Stefan Roese | 16c0cc1 | 2007-03-21 13:39:57 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2007 |
| 3 | * Stefan Roese, DENX Software Engineering, sr@denx.de. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | 16c0cc1 | 2007-03-21 13:39:57 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <asm/processor.h> |
| 10 | |
| 11 | extern void board_pll_init_f(void); |
| 12 | |
Stefan Roese | e673226 | 2007-04-18 12:07:47 +0200 | [diff] [blame] | 13 | static void acadia_gpio_init(void) |
Stefan Roese | 16c0cc1 | 2007-03-21 13:39:57 +0100 | [diff] [blame] | 14 | { |
| 15 | /* |
| 16 | * GPIO0 setup (select GPIO or alternate function) |
| 17 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 18 | 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 Roese | 16c0cc1 | 2007-03-21 13:39:57 +0100 | [diff] [blame] | 25 | |
| 26 | /* |
| 27 | * Ultra (405EZ) was nice enough to add another GPIO controller |
| 28 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 29 | 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 Roese | 16c0cc1 | 2007-03-21 13:39:57 +0100 | [diff] [blame] | 36 | } |
| 37 | |
Stefan Roese | 16c0cc1 | 2007-03-21 13:39:57 +0100 | [diff] [blame] | 38 | int board_early_init_f(void) |
| 39 | { |
| 40 | unsigned int reg; |
| 41 | |
Stefan Roese | df8a24c | 2007-06-19 16:42:31 +0200 | [diff] [blame] | 42 | #if !defined(CONFIG_NAND_U_BOOT) |
Stefan Roese | e673226 | 2007-04-18 12:07:47 +0200 | [diff] [blame] | 43 | /* don't reinit PLL when booting via I2C bootstrap option */ |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 44 | mfsdr(SDR0_PINSTP, reg); |
Stefan Roese | e673226 | 2007-04-18 12:07:47 +0200 | [diff] [blame] | 45 | if (reg != 0xf0000000) |
| 46 | board_pll_init_f(); |
Stefan Roese | df8a24c | 2007-06-19 16:42:31 +0200 | [diff] [blame] | 47 | #endif |
Stefan Roese | e673226 | 2007-04-18 12:07:47 +0200 | [diff] [blame] | 48 | |
| 49 | acadia_gpio_init(); |
Stefan Roese | 16c0cc1 | 2007-03-21 13:39:57 +0100 | [diff] [blame] | 50 | |
Stefan Roese | 5d4a179 | 2007-05-24 08:22:09 +0200 | [diff] [blame] | 51 | /* Configure 405EZ for NAND usage */ |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 52 | mtsdr(SDR0_NAND0, SDR_NAND0_NDEN | SDR_NAND0_NDAREN | SDR_NAND0_NDRBEN); |
| 53 | mfsdr(SDR0_ULTRA0, reg); |
Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 54 | reg &= ~SDR_ULTRA0_CSN_MASK; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 55 | reg |= (SDR_ULTRA0_CSNSEL0 >> CONFIG_SYS_NAND_CS) | |
Stefan Roese | c440bfe | 2007-06-06 11:42:13 +0200 | [diff] [blame] | 56 | SDR_ULTRA0_NDGPIOBP | |
| 57 | SDR_ULTRA0_EBCRDYEN | |
| 58 | SDR_ULTRA0_NFSRSTEN; |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 59 | mtsdr(SDR0_ULTRA0, reg); |
Stefan Roese | 5d4a179 | 2007-05-24 08:22:09 +0200 | [diff] [blame] | 60 | |
Stefan Roese | 16c0cc1 | 2007-03-21 13:39:57 +0100 | [diff] [blame] | 61 | /* USB Host core needs this bit set */ |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 62 | mfsdr(SDR0_ULTRA1, reg); |
| 63 | mtsdr(SDR0_ULTRA1, reg | SDR_ULTRA1_LEDNENABLE); |
Stefan Roese | 16c0cc1 | 2007-03-21 13:39:57 +0100 | [diff] [blame] | 64 | |
Stefan Roese | 952e776 | 2009-09-24 09:55:50 +0200 | [diff] [blame] | 65 | mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */ |
| 66 | mtdcr(UIC0ER, 0x00000000); /* disable all ints */ |
| 67 | mtdcr(UIC0CR, 0x00000010); |
| 68 | mtdcr(UIC0PR, 0xFE7FFFF0); /* set int polarities */ |
| 69 | mtdcr(UIC0TR, 0x00000010); /* set int trigger levels */ |
| 70 | mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */ |
Stefan Roese | 16c0cc1 | 2007-03-21 13:39:57 +0100 | [diff] [blame] | 71 | |
| 72 | return 0; |
| 73 | } |
| 74 | |
| 75 | int misc_init_f(void) |
| 76 | { |
| 77 | /* Set EPLD to take PHY out of reset */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 78 | out8(CONFIG_SYS_CPLD_BASE + 0x05, 0x00); |
Stefan Roese | 16c0cc1 | 2007-03-21 13:39:57 +0100 | [diff] [blame] | 79 | udelay(100000); |
| 80 | |
| 81 | return 0; |
| 82 | } |
| 83 | |
| 84 | /* |
| 85 | * Check Board Identity: |
| 86 | */ |
| 87 | int checkboard(void) |
| 88 | { |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 89 | char buf[64]; |
| 90 | int i = getenv_f("serial#", buf, sizeof(buf)); |
Stefan Roese | 5d4a179 | 2007-05-24 08:22:09 +0200 | [diff] [blame] | 91 | u8 rev; |
Stefan Roese | 16c0cc1 | 2007-03-21 13:39:57 +0100 | [diff] [blame] | 92 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 93 | rev = in8(CONFIG_SYS_CPLD_BASE + 0); |
Stefan Roese | 5d4a179 | 2007-05-24 08:22:09 +0200 | [diff] [blame] | 94 | printf("Board: Acadia - AMCC PPC405EZ Evaluation Board, Rev. %X", rev); |
| 95 | |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 96 | if (i > 0) { |
Stefan Roese | 16c0cc1 | 2007-03-21 13:39:57 +0100 | [diff] [blame] | 97 | puts(", serial# "); |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 98 | puts(buf); |
Stefan Roese | 16c0cc1 | 2007-03-21 13:39:57 +0100 | [diff] [blame] | 99 | } |
| 100 | putc('\n'); |
| 101 | |
| 102 | return (0); |
| 103 | } |