Re: [U-Boot] An error in u-boot-2009.08/cpu/arm920t/start.S

2009-11-26 Thread Tom
Alessandro Rubini wrote: >> Does someone have the s3c2410 manual? > > 2410UserManual.pdf: > >USER'S MANUAL >S3C2410A ­ 200MHz & 266MHz 32-Bit RISC Microprocessor Revision 1.0 > >[...] > >INTERRUPT SUB MASK (INTSUBMSK) REGISTER This register has 11 bits each >of which is rela

Re: [U-Boot] An error in u-boot-2009.08/cpu/arm920t/start.S

2009-11-25 Thread Alessandro Rubini
> Does someone have the s3c2410 manual? 2410UserManual.pdf: USER'S MANUAL S3C2410A ­ 200MHz & 266MHz 32-Bit RISC Microprocessor Revision 1.0 [...] INTERRUPT SUB MASK (INTSUBMSK) REGISTER This register has 11 bits each of which is related to an interrupt source. [...] Bits 0..10

Re: [U-Boot] An error in u-boot-2009.08/cpu/arm920t/start.S

2009-11-25 Thread Tom
Wolfgang Denk wrote: > Dear Tom, > > In message <902963.84935...@web15002.mail.cnb.yahoo.com> > =?utf-8?B?6Zu3IOmrmA==?= wrote: >> In u-boot-2009.08/cpu/arm920t/start.S, the instruction of line 158 is >> "ldr r1, x3ff", but the effective bits in INTSUBMSK register of >> S3C2410 are [10...0]. So I

Re: [U-Boot] An error in u-boot-2009.08/cpu/arm920t/start.S

2009-11-22 Thread Wolfgang Denk
Dear Tom, In message <902963.84935...@web15002.mail.cnb.yahoo.com> =?utf-8?B?6Zu3IOmrmA==?= wrote: > > In u-boot-2009.08/cpu/arm920t/start.S, the instruction of line 158 is > "ldr r1, x3ff", but the effective bits in INTSUBMSK register of > S3C2410 are [10...0]. So I think "0x3ff" is not right.

[U-Boot] An error in u-boot-2009.08/cpu/arm920t/start.S

2009-09-20 Thread 雷 高
In u-boot-2009.08/cpu/arm920t/start.S, the instruction of line 158 is "ldr    r1, =0x3ff", but the effective bits in INTSUBMSK register of S3C2410 are [10...0]. So I think "0x3ff" is not right. The right value should be "0x7ff". __