summaryrefslogtreecommitdiff
path: root/cpu/mpc85xx/qe_io.c
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2007-11-27 23:25:02 -0600
committerKumar Gala <galak@kernel.crashing.org>2007-12-11 22:34:19 -0600
commitf59b55a5b8fcadaa99781ba48e7a38e956afa527 (patch)
tree6760b9b27fea80ab62af85758bfd18c902fa4760 /cpu/mpc85xx/qe_io.c
parent50c03c8cf494d91cdec39670d95337c743e16ec9 (diff)
downloadu-boot-imx-f59b55a5b8fcadaa99781ba48e7a38e956afa527.zip
u-boot-imx-f59b55a5b8fcadaa99781ba48e7a38e956afa527.tar.gz
u-boot-imx-f59b55a5b8fcadaa99781ba48e7a38e956afa527.tar.bz2
Stop using immap_t for guts offset on 85xx
In the future the offsets to various blocks may not be in same location. Move to using CFG_MPC85xx_GUTS_ADDR as the base of the guts registers instead of getting it via &immap->im_gur. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'cpu/mpc85xx/qe_io.c')
-rw-r--r--cpu/mpc85xx/qe_io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/mpc85xx/qe_io.c b/cpu/mpc85xx/qe_io.c
index 8878bc5..98075bb 100644
--- a/cpu/mpc85xx/qe_io.c
+++ b/cpu/mpc85xx/qe_io.c
@@ -34,9 +34,9 @@ void qe_config_iopin(u8 port, u8 pin, int dir, int open_drain, int assign)
u32 pin_2bit_assign;
u32 pin_1bit_mask;
u32 tmp_val;
- volatile immap_t *im = (volatile immap_t *)CFG_IMMR;
+ volatile ccsr_gur_t *gur = (void *)(CFG_MPC85xx_GUTS_ADDR);
volatile par_io_t *par_io = (volatile par_io_t *)
- &(im->im_gur.qe_par_io);
+ &(gur->qe_par_io);
/* Caculate pin location and 2bit mask and dir */
pin_2bit_mask = (u32)(0x3 << (NUM_OF_PINS-(pin%(NUM_OF_PINS/2)+1)*2));