Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ebcff3c7 authored by Horst Kronstorfer's avatar Horst Kronstorfer Committed by Kumar Gala
Browse files

ppc32: Fix BCSR_SIZE for MPC834x SYS



According to the 'MPC8349E MDS Processor Board User Manual Rev. 1.6'
the size of the BCSR mapping is 32kb.

Signed-off-by: default avatarHorst Kronstorfer <hkronsto@frequentis.com>
Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
parent 8b0d5514
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -23,7 +23,7 @@
#define VIRT_IMMRBAR		((uint)0xfe000000)
#define VIRT_IMMRBAR		((uint)0xfe000000)


#define BCSR_PHYS_ADDR		((uint)0xf8000000)
#define BCSR_PHYS_ADDR		((uint)0xf8000000)
#define BCSR_SIZE		((uint)(128 * 1024))
#define BCSR_SIZE		((uint)(32 * 1024))


#define BCSR_MISC_REG2_OFF	0x07
#define BCSR_MISC_REG2_OFF	0x07
#define BCSR_MISC_REG2_PORESET	0x01
#define BCSR_MISC_REG2_PORESET	0x01