Message ID | 1369741577-21984-1-git-send-email-aida.mynzhasova@skitlab.ru (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Aida Mynzhasova <aida.mynzhasova@skitlab.ru> writes: > This patch corrects the base address of IVA2 module on omap3430. > > Signed-off-by: Aida Mynzhasova <aida.mynzhasova@skitlab.ru> I know it looks a bit weird to have a negative offset like this, but it's actually correct. These offsets are used relative to prm_base (on 34xx, it's OMAP3430_PRM_BASE defined in omap34xx.h). So I suggest you double check the values there, and cross reference to the "PRCM Register Manual" section of the TRM (last section of the PRCM chapter.) Thanks, Kevin > --- > arch/arm/mach-omap2/prcm-common.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm/mach-omap2/prcm-common.h b/arch/arm/mach-omap2/prcm-common.h > index c7d355f..d5ec044 100644 > --- a/arch/arm/mach-omap2/prcm-common.h > +++ b/arch/arm/mach-omap2/prcm-common.h > @@ -37,7 +37,7 @@ > #define OMAP2430_MDM_MOD 0xc00 > > /* IVA2 module is < base on 3430 */ > -#define OMAP3430_IVA2_MOD -0x800 > +#define OMAP3430_IVA2_MOD 0x800 > #define OMAP3430ES2_SGX_MOD GFX_MOD > #define OMAP3430_CCR_MOD PLL_MOD > #define OMAP3430_DSS_MOD 0x600
On 28.05.2013 18:30, Kevin Hilman wrote: > Aida Mynzhasova <aida.mynzhasova@skitlab.ru> writes: > >> This patch corrects the base address of IVA2 module on omap3430. >> >> Signed-off-by: Aida Mynzhasova <aida.mynzhasova@skitlab.ru> > > I know it looks a bit weird to have a negative offset like this, but > it's actually correct. These offsets are used relative to > prm_base (on 34xx, it's OMAP3430_PRM_BASE defined in omap34xx.h). > So I suggest you double check the values there, and cross reference to > the "PRCM Register Manual" section of the TRM (last section of the PRCM > chapter.) > > Thanks, > > Kevin > Ok, thanks for making it clear. I thought that it can be a bug, because I made an attempt to run Linux 3.10-rc3 kernel on Texas Instrument's DM816x evaluation module. Without making any changes I faced with the kernel crush: [ 0.000000] Unhandled fault: external abort on non-linefetch (0x1028) at 0xfa17f8e4 [ 0.000000] Internal error: : 1028 [#1] SMP ARM [ 0.000000] Modules linked in: [ 0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 3.10.0-rc3-00001-g0e5443c-dirty #12 [ 0.000000] task: c076fc50 ti: c0764000 task.ti: c0764000 [ 0.000000] PC is at omap2_pwrdm_wait_transition+0x1c/0xac [ 0.000000] LR is at pwrdm_register_pwrdms+0x15c/0x1ac [ 0.000000] pc : [<c0031698>] lr : [<c0036010>] psr: 60000193 [ 0.000000] sp : c0765f28 ip : c07bebe0 fp : 00000001 [ 0.000000] r10: c07e6a90 r9 : 00000000 r8 : c07e6944 [ 0.000000] r7 : c0754a50 r6 : c064f264 r5 : c0775298 r4 : c0773e9c [ 0.000000] r3 : fffff8e4 r2 : fa17f8e4 r1 : 00000004 r0 : c0775298 [ 0.000000] Flags: nZCv IRQs off FIQs on Mode SVC_32 ISA ARM Segment kernel [ 0.000000] Control: 10c5387d Table: 80004019 DAC: 00000017 [ 0.000000] Process swapper (pid: 0, stack limit = 0xc0764240) [ 0.000000] Stack: (0xc0765f28 to 0xc0766000) [ 0.000000] 5f20: c0773e9c c0775298 c064f264 c0754a50 c0773ee4 c0036010 [ 0.000000] 5f40: 35170034 81600134 c05125a8 fa180000 80000200 c0771348 c07b1b48 c07475ac [ 0.000000] 5f60: c0771348 c07191fc c0647c40 c0711598 16c00000 c0d24fb4 c06450ac c070c148 [ 0.000000] 5f80: c0765f98 c0765f90 c0771134 c0765fdc 00000000 00000000 00000000 00000000 [ 0.000000] 5fa0: c0643878 00000001 00000000 c0748774 c0771134 c076c880 413fc082 00000000 [ 0.000000] 5fc0: 00000000 c07086fc 00000000 00000000 00000000 00000000 00000000 c0748778 [ 0.000000] 5fe0: 10c53c7d c076c910 c0748774 c0771134 80004059 80008074 00000000 00000000 [ 0.000000] [<c0031698>] (omap2_pwrdm_wait_transition+0x1c/0xac) from [<c0036010>] (pwrdm_register_pwrdms+0x15c/0x1ac) [ 0.000000] [<c0036010>] (pwrdm_register_pwrdms+0x15c/0x1ac) from [<c07191fc>] (omap3xxx_powerdomains_init+0x50/0x144) [ 0.000000] [<c07191fc>] (omap3xxx_powerdomains_init+0x50/0x144) from [<c0711598>] (ti81xx_init_early+0xcc/0x178) [ 0.000000] [<c0711598>] (ti81xx_init_early+0xcc/0x178) from [<c070c148>] (setup_arch+0x5ac/0x800) [ 0.000000] [<c070c148>] (setup_arch+0x5ac/0x800) from [<c07086fc>] (start_kernel+0x7c/0x330) [ 0.000000] [<c07086fc>] (start_kernel+0x7c/0x330) from [<80008074>] (0x80008074) [ 0.000000] Code: e1d030f8 e5982000 e28330e4 e0822003 (e5921000) [ 0.000000] ---[ end trace 1b75b31a2719ed1c ]--- So, I tried to find out what's wrong and explored the code of omap3xxx_powerdomains_init() call. It turned out that powerdomain initialization for ti81xx platform uses *powerdomains_omap3430_common[] structures, and when it tries to init iva2_pwrdm kernel crush occures. After applying my code changes the situation becomes a little bit better, and the kernel is able to continue it's loading (but still unable to load completely). Anyway, maybe it can be a good idea to add new powerdomain structures for supporting ti81xx platform in mainline kernel. Actually I have already done some code changes for making current kernel bootable on DM816x EVM and I'm going to continue my work. Thanks, Aida
diff --git a/arch/arm/mach-omap2/prcm-common.h b/arch/arm/mach-omap2/prcm-common.h index c7d355f..d5ec044 100644 --- a/arch/arm/mach-omap2/prcm-common.h +++ b/arch/arm/mach-omap2/prcm-common.h @@ -37,7 +37,7 @@ #define OMAP2430_MDM_MOD 0xc00 /* IVA2 module is < base on 3430 */ -#define OMAP3430_IVA2_MOD -0x800 +#define OMAP3430_IVA2_MOD 0x800 #define OMAP3430ES2_SGX_MOD GFX_MOD #define OMAP3430_CCR_MOD PLL_MOD #define OMAP3430_DSS_MOD 0x600
This patch corrects the base address of IVA2 module on omap3430. Signed-off-by: Aida Mynzhasova <aida.mynzhasova@skitlab.ru> --- arch/arm/mach-omap2/prcm-common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)