blob: 2eb18df5e78766f5fe0102ce24296db72384d1e6 [file] [log] [blame]
Stefan Roese16c0cc12007-03-21 13:39:57 +01001/*
2 * (C) Copyright 2007
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Stefan Roese16c0cc12007-03-21 13:39:57 +01006 */
7
8#include <common.h>
9#include <asm/processor.h>
10
11extern void board_pll_init_f(void);
12
Stefan Roesee6732262007-04-18 12:07:47 +020013static void acadia_gpio_init(void)
Stefan Roese16c0cc12007-03-21 13:39:57 +010014{
15 /*
16 * GPIO0 setup (select GPIO or alternate function)
17 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020018 out32(GPIO0_OSRL, CONFIG_SYS_GPIO0_OSRL);
19 out32(GPIO0_OSRH, CONFIG_SYS_GPIO0_OSRH); /* output select */
20 out32(GPIO0_ISR1L, CONFIG_SYS_GPIO0_ISR1L);
21 out32(GPIO0_ISR1H, CONFIG_SYS_GPIO0_ISR1H); /* input select */
22 out32(GPIO0_TSRL, CONFIG_SYS_GPIO0_TSRL);
23 out32(GPIO0_TSRH, CONFIG_SYS_GPIO0_TSRH); /* three-state select */
24 out32(GPIO0_TCR, CONFIG_SYS_GPIO0_TCR); /* enable output driver for outputs */
Stefan Roese16c0cc12007-03-21 13:39:57 +010025
26 /*
27 * Ultra (405EZ) was nice enough to add another GPIO controller
28 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020029 out32(GPIO1_OSRH, CONFIG_SYS_GPIO1_OSRH); /* output select */
30 out32(GPIO1_OSRL, CONFIG_SYS_GPIO1_OSRL);
31 out32(GPIO1_ISR1H, CONFIG_SYS_GPIO1_ISR1H); /* input select */
32 out32(GPIO1_ISR1L, CONFIG_SYS_GPIO1_ISR1L);
33 out32(GPIO1_TSRH, CONFIG_SYS_GPIO1_TSRH); /* three-state select */
34 out32(GPIO1_TSRL, CONFIG_SYS_GPIO1_TSRL);
35 out32(GPIO1_TCR, CONFIG_SYS_GPIO1_TCR); /* enable output driver for outputs */
Stefan Roese16c0cc12007-03-21 13:39:57 +010036}
37
Stefan Roese16c0cc12007-03-21 13:39:57 +010038int board_early_init_f(void)
39{
40 unsigned int reg;
41
Stefan Roesee6732262007-04-18 12:07:47 +020042 /* don't reinit PLL when booting via I2C bootstrap option */
Stefan Roesed1c3b272009-09-09 16:25:29 +020043 mfsdr(SDR0_PINSTP, reg);
Stefan Roesee6732262007-04-18 12:07:47 +020044 if (reg != 0xf0000000)
45 board_pll_init_f();
46
47 acadia_gpio_init();
Stefan Roese16c0cc12007-03-21 13:39:57 +010048
Stefan Roese5d4a1792007-05-24 08:22:09 +020049 /* Configure 405EZ for NAND usage */
Stefan Roesed1c3b272009-09-09 16:25:29 +020050 mtsdr(SDR0_NAND0, SDR_NAND0_NDEN | SDR_NAND0_NDAREN | SDR_NAND0_NDRBEN);
51 mfsdr(SDR0_ULTRA0, reg);
Stefan Roesec440bfe2007-06-06 11:42:13 +020052 reg &= ~SDR_ULTRA0_CSN_MASK;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020053 reg |= (SDR_ULTRA0_CSNSEL0 >> CONFIG_SYS_NAND_CS) |
Stefan Roesec440bfe2007-06-06 11:42:13 +020054 SDR_ULTRA0_NDGPIOBP |
55 SDR_ULTRA0_EBCRDYEN |
56 SDR_ULTRA0_NFSRSTEN;
Stefan Roesed1c3b272009-09-09 16:25:29 +020057 mtsdr(SDR0_ULTRA0, reg);
Stefan Roese5d4a1792007-05-24 08:22:09 +020058
Stefan Roese16c0cc12007-03-21 13:39:57 +010059 /* USB Host core needs this bit set */
Stefan Roesed1c3b272009-09-09 16:25:29 +020060 mfsdr(SDR0_ULTRA1, reg);
61 mtsdr(SDR0_ULTRA1, reg | SDR_ULTRA1_LEDNENABLE);
Stefan Roese16c0cc12007-03-21 13:39:57 +010062
Stefan Roese952e7762009-09-24 09:55:50 +020063 mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */
64 mtdcr(UIC0ER, 0x00000000); /* disable all ints */
65 mtdcr(UIC0CR, 0x00000010);
66 mtdcr(UIC0PR, 0xFE7FFFF0); /* set int polarities */
67 mtdcr(UIC0TR, 0x00000010); /* set int trigger levels */
68 mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */
Stefan Roese16c0cc12007-03-21 13:39:57 +010069
70 return 0;
71}
72
73int misc_init_f(void)
74{
75 /* Set EPLD to take PHY out of reset */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020076 out8(CONFIG_SYS_CPLD_BASE + 0x05, 0x00);
Stefan Roese16c0cc12007-03-21 13:39:57 +010077 udelay(100000);
78
79 return 0;
80}
81
82/*
83 * Check Board Identity:
84 */
85int checkboard(void)
86{
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +000087 char buf[64];
88 int i = getenv_f("serial#", buf, sizeof(buf));
Stefan Roese5d4a1792007-05-24 08:22:09 +020089 u8 rev;
Stefan Roese16c0cc12007-03-21 13:39:57 +010090
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020091 rev = in8(CONFIG_SYS_CPLD_BASE + 0);
Stefan Roese5d4a1792007-05-24 08:22:09 +020092 printf("Board: Acadia - AMCC PPC405EZ Evaluation Board, Rev. %X", rev);
93
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +000094 if (i > 0) {
Stefan Roese16c0cc12007-03-21 13:39:57 +010095 puts(", serial# ");
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +000096 puts(buf);
Stefan Roese16c0cc12007-03-21 13:39:57 +010097 }
98 putc('\n');
99
100 return (0);
101}