Dirk Eibach | 89b8619 | 2008-12-09 13:12:40 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2008 |
| 3 | * Dirk Eibach, Guntermann & Drunck GmbH, eibach@gdsys.de |
| 4 | * |
| 5 | * Based on board/amcc/yosemite/yosemite.c |
| 6 | * (C) Copyright 2006-2007 |
| 7 | * Stefan Roese, DENX Software Engineering, sr@denx.de. |
| 8 | * |
| 9 | * See file CREDITS for list of people who contributed to this |
| 10 | * project. |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or |
| 13 | * modify it under the terms of the GNU General Public License as |
| 14 | * published by the Free Software Foundation; either version 2 of |
| 15 | * the License, or (at your option) any later version. |
| 16 | * |
| 17 | * This program is distributed in the hope that it will be useful, |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | * GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License |
| 23 | * along with this program; if not, write to the Free Software |
| 24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 25 | * MA 02111-1307 USA |
| 26 | */ |
| 27 | |
| 28 | #include <common.h> |
Stefan Roese | b36df56 | 2010-09-09 19:18:00 +0200 | [diff] [blame] | 29 | #include <asm/ppc4xx.h> |
Dirk Eibach | 89b8619 | 2008-12-09 13:12:40 +0100 | [diff] [blame] | 30 | #include <asm/processor.h> |
| 31 | #include <asm/io.h> |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 32 | #include <asm/4xx_pci.h> |
Dirk Eibach | 89b8619 | 2008-12-09 13:12:40 +0100 | [diff] [blame] | 33 | |
| 34 | DECLARE_GLOBAL_DATA_PTR; |
| 35 | |
| 36 | /* info for FLASH chips */ |
| 37 | extern flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS]; |
| 38 | |
| 39 | int board_early_init_f(void) |
| 40 | { |
| 41 | register uint reg; |
| 42 | |
| 43 | /* |
| 44 | * Setup the external bus controller/chip selects |
| 45 | */ |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 46 | mfebc(EBC0_CFG, reg); |
| 47 | mtebc(EBC0_CFG, reg | 0x04000000); /* Set ATC */ |
Dirk Eibach | 89b8619 | 2008-12-09 13:12:40 +0100 | [diff] [blame] | 48 | |
| 49 | /* |
| 50 | * Setup the GPIO pins |
| 51 | */ |
| 52 | |
| 53 | /* setup Address lines for flash size 64Meg. */ |
| 54 | out32(GPIO0_OSRL, in32(GPIO0_OSRL) | 0x54000000); |
| 55 | out32(GPIO0_TSRL, in32(GPIO0_TSRL) | 0x54000000); |
| 56 | out32(GPIO0_ISR1L, in32(GPIO0_ISR1L) | 0x54000000); |
| 57 | |
| 58 | /* setup emac */ |
| 59 | out32(GPIO0_TCR, in32(GPIO0_TCR) | 0xC080); |
| 60 | out32(GPIO0_TSRL, in32(GPIO0_TSRL) | 0x40); |
| 61 | out32(GPIO0_ISR1L, in32(GPIO0_ISR1L) | 0x55); |
| 62 | out32(GPIO0_OSRH, in32(GPIO0_OSRH) | 0x50004000); |
| 63 | out32(GPIO0_ISR1H, in32(GPIO0_ISR1H) | 0x00440000); |
| 64 | |
| 65 | /* UART0 and UART1*/ |
| 66 | out32(GPIO1_TCR, in32(GPIO1_TCR) | 0x16000000); |
| 67 | out32(GPIO1_OSRL, in32(GPIO1_OSRL) | 0x02180000); |
| 68 | out32(GPIO1_ISR1L, in32(GPIO1_ISR1L) | 0x00400000); |
| 69 | out32(GPIO1_ISR2L, in32(GPIO1_ISR2L) | 0x04010000); |
| 70 | |
| 71 | /* disable boot-eeprom WP */ |
| 72 | out32(GPIO0_OSRL, in32(GPIO0_OSRL) & ~0x00C00000); |
| 73 | out32(GPIO0_TSRL, in32(GPIO0_TSRL) & ~0x00C00000); |
| 74 | out32(GPIO0_ISR1L, in32(GPIO0_ISR1L) & ~0x00C00000); |
| 75 | out32(GPIO0_TCR, in32(GPIO0_TCR) | 0x08000000); |
| 76 | out32(GPIO0_OR, in32(GPIO0_OR) & ~0x08000000); |
| 77 | |
| 78 | /* external interrupts IRQ0...3 */ |
| 79 | out32(GPIO1_TCR, in32(GPIO1_TCR) & ~0x00f00000); |
| 80 | out32(GPIO1_TSRL, in32(GPIO1_TSRL) & ~0x00005500); |
| 81 | out32(GPIO1_ISR1L, in32(GPIO1_ISR1L) | 0x00005500); |
| 82 | |
| 83 | |
| 84 | /* |
| 85 | * Setup the interrupt controller polarities, triggers, etc. |
| 86 | */ |
Stefan Roese | 952e776 | 2009-09-24 09:55:50 +0200 | [diff] [blame] | 87 | mtdcr(UIC0SR, 0xffffffff); /* clear all */ |
| 88 | mtdcr(UIC0ER, 0x00000000); /* disable all */ |
| 89 | mtdcr(UIC0CR, 0x00000009); /* ATI & UIC1 crit are critical */ |
| 90 | mtdcr(UIC0PR, 0xfffffe13); /* per ref-board manual */ |
| 91 | mtdcr(UIC0TR, 0x01c00008); /* per ref-board manual */ |
| 92 | mtdcr(UIC0VR, 0x00000001); /* int31 highest, base=0x000 */ |
| 93 | mtdcr(UIC0SR, 0xffffffff); /* clear all */ |
Dirk Eibach | 89b8619 | 2008-12-09 13:12:40 +0100 | [diff] [blame] | 94 | |
Stefan Roese | 952e776 | 2009-09-24 09:55:50 +0200 | [diff] [blame] | 95 | mtdcr(UIC1SR, 0xffffffff); /* clear all */ |
| 96 | mtdcr(UIC1ER, 0x00000000); /* disable all */ |
| 97 | mtdcr(UIC1CR, 0x00000000); /* all non-critical */ |
| 98 | mtdcr(UIC1PR, 0xffffe0ff); /* per ref-board manual */ |
| 99 | mtdcr(UIC1TR, 0x00ffc000); /* per ref-board manual */ |
| 100 | mtdcr(UIC1VR, 0x00000001); /* int31 highest, base=0x000 */ |
| 101 | mtdcr(UIC1SR, 0xffffffff); /* clear all */ |
Dirk Eibach | 89b8619 | 2008-12-09 13:12:40 +0100 | [diff] [blame] | 102 | |
| 103 | /* |
| 104 | * Setup other serial configuration |
| 105 | */ |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 106 | mfsdr(SDR0_PCI0, reg); |
| 107 | mtsdr(SDR0_PCI0, 0x80000000 | reg); /* PCI arbiter enabled */ |
| 108 | mtsdr(SDR0_PFC0, 0x00003e00); /* Pin function */ |
| 109 | mtsdr(SDR0_PFC1, 0x00048000); /* Pin function: UART0 has 4 pins */ |
Dirk Eibach | 89b8619 | 2008-12-09 13:12:40 +0100 | [diff] [blame] | 110 | |
| 111 | return 0; |
| 112 | } |
| 113 | |
| 114 | int misc_init_r(void) |
| 115 | { |
| 116 | uint pbcr; |
| 117 | int size_val; |
| 118 | uint sz; |
| 119 | |
| 120 | /* Re-do sizing to get full correct info */ |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 121 | mfebc(PB0CR, pbcr); |
Dirk Eibach | 89b8619 | 2008-12-09 13:12:40 +0100 | [diff] [blame] | 122 | |
| 123 | if (gd->bd->bi_flashsize > 0x08000000) |
| 124 | panic("Max. flash banksize is 128 MB!\n"); |
| 125 | |
| 126 | for (sz = gd->bd->bi_flashsize, size_val = 7; |
| 127 | ((sz & 0x08000000) == 0) && (size_val > 0); --size_val) |
| 128 | sz <<= 1; |
| 129 | |
| 130 | pbcr = (pbcr & 0x0001ffff) | gd->bd->bi_flashstart | (size_val << 17); |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 131 | mtebc(PB0CR, pbcr); |
Dirk Eibach | 89b8619 | 2008-12-09 13:12:40 +0100 | [diff] [blame] | 132 | |
| 133 | /* adjust flash start and offset */ |
| 134 | gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize; |
| 135 | gd->bd->bi_flashoffset = 0; |
| 136 | |
| 137 | /* Monitor protection ON by default */ |
| 138 | (void)flash_protect(FLAG_PROTECT_SET, |
| 139 | -CONFIG_SYS_MONITOR_LEN, |
| 140 | 0xffffffff, |
| 141 | &flash_info[0]); |
| 142 | |
| 143 | return 0; |
| 144 | } |
| 145 | |
| 146 | int checkboard(void) |
| 147 | { |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 148 | char buf[64]; |
| 149 | int i = getenv_f("serial#", buf, sizeof(buf)); |
Dirk Eibach | 89b8619 | 2008-12-09 13:12:40 +0100 | [diff] [blame] | 150 | |
| 151 | printf("Board: GDPPC440ETX - G&D PPC440EP/GR ETX-module"); |
| 152 | |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 153 | if (i > 0) { |
Dirk Eibach | 89b8619 | 2008-12-09 13:12:40 +0100 | [diff] [blame] | 154 | puts(", serial# "); |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 155 | puts(buf); |
Dirk Eibach | 89b8619 | 2008-12-09 13:12:40 +0100 | [diff] [blame] | 156 | } |
| 157 | putc('\n'); |
| 158 | |
| 159 | return 0; |
| 160 | } |
| 161 | |
| 162 | /* |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 163 | * Override weak pci_pre_init() |
Dirk Eibach | 89b8619 | 2008-12-09 13:12:40 +0100 | [diff] [blame] | 164 | */ |
| 165 | #if defined(CONFIG_PCI) |
| 166 | int pci_pre_init(struct pci_controller *hose) |
| 167 | { |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 168 | /* First call common code */ |
| 169 | __pci_pre_init(hose); |
Dirk Eibach | 89b8619 | 2008-12-09 13:12:40 +0100 | [diff] [blame] | 170 | |
| 171 | /* enable 66 MHz ext. Clock */ |
| 172 | out32(GPIO1_TCR, in32(GPIO1_TCR) | 0x00008000); |
| 173 | out32(GPIO1_OR, in32(GPIO1_OR) | 0x00008000); |
| 174 | |
| 175 | return 1; |
| 176 | } |
| 177 | #endif /* defined(CONFIG_PCI) */ |