Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2005 |
| 3 | * Stefan Roese, DENX Software Engineering, sr@denx.de. |
| 4 | * |
| 5 | * Copyright (C) 2002 Scott McNutt <smcnutt@artesyncp.com> |
| 6 | * |
| 7 | * See file CREDITS for list of people who contributed to this |
| 8 | * project. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License as |
| 12 | * published by the Free Software Foundation; either version 2 of |
| 13 | * the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 23 | * MA 02111-1307 USA |
| 24 | */ |
| 25 | |
| 26 | #include <common.h> |
| 27 | #include <asm/processor.h> |
| 28 | #include <command.h> |
| 29 | |
| 30 | #include "p3p440.h" |
| 31 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 32 | DECLARE_GLOBAL_DATA_PTR; |
| 33 | |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 34 | void set_led(int color) |
| 35 | { |
| 36 | switch (color) { |
| 37 | case LED_OFF: |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 38 | out32(GPIO0_OR, in32(GPIO0_OR) & ~CONFIG_SYS_LED_GREEN & ~CONFIG_SYS_LED_RED); |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 39 | break; |
| 40 | |
| 41 | case LED_GREEN: |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 42 | out32(GPIO0_OR, (in32(GPIO0_OR) | CONFIG_SYS_LED_GREEN) & ~CONFIG_SYS_LED_RED); |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 43 | break; |
| 44 | |
| 45 | case LED_RED: |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 46 | out32(GPIO0_OR, (in32(GPIO0_OR) | CONFIG_SYS_LED_RED) & ~CONFIG_SYS_LED_GREEN); |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 47 | break; |
| 48 | |
| 49 | case LED_ORANGE: |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 50 | out32(GPIO0_OR, in32(GPIO0_OR) | CONFIG_SYS_LED_GREEN | CONFIG_SYS_LED_RED); |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 51 | break; |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | static int is_monarch(void) |
| 56 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 57 | out32(GPIO0_OR, in32(GPIO0_OR) & ~CONFIG_SYS_GPIO_RDY); |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 58 | udelay(1000); |
| 59 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 60 | if (in32(GPIO0_IR) & CONFIG_SYS_MONARCH_IO) |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 61 | return 0; |
| 62 | else |
| 63 | return 1; |
| 64 | } |
| 65 | |
| 66 | static void wait_for_pci_ready(void) |
| 67 | { |
| 68 | /* |
| 69 | * Configure EREADY_IO as input |
| 70 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 71 | out32(GPIO0_TCR, in32(GPIO0_TCR) & ~CONFIG_SYS_EREADY_IO); |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 72 | udelay(1000); |
| 73 | |
| 74 | for (;;) { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 75 | if (in32(GPIO0_IR) & CONFIG_SYS_EREADY_IO) |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 76 | return; |
Wolfgang Denk | f013dac | 2005-12-04 00:40:34 +0100 | [diff] [blame] | 77 | } |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 78 | |
| 79 | } |
| 80 | |
| 81 | int board_early_init_f(void) |
| 82 | { |
| 83 | uint reg; |
| 84 | |
| 85 | /*-------------------------------------------------------------------- |
| 86 | * Setup the external bus controller/chip selects |
| 87 | *-------------------------------------------------------------------*/ |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 88 | mtdcr(EBC0_CFGADDR, EBC0_CFG); |
| 89 | reg = mfdcr(EBC0_CFGDATA); |
| 90 | mtdcr(EBC0_CFGDATA, reg | 0x04000000); /* Set ATC */ |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 91 | |
| 92 | /*-------------------------------------------------------------------- |
| 93 | * Setup pin multiplexing (GPIO/IRQ...) |
| 94 | *-------------------------------------------------------------------*/ |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 95 | mtdcr(CPC0_GPIO, 0x03F01F80); |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 96 | |
| 97 | out32(GPIO0_ODR, 0x00000000); /* no open drain pins */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 98 | out32(GPIO0_TCR, CONFIG_SYS_GPIO_RDY | CONFIG_SYS_EREADY_IO | CONFIG_SYS_LED_RED | CONFIG_SYS_LED_GREEN); |
| 99 | out32(GPIO0_OR, CONFIG_SYS_GPIO_RDY); |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 100 | |
| 101 | /*-------------------------------------------------------------------- |
| 102 | * Setup the interrupt controller polarities, triggers, etc. |
| 103 | *-------------------------------------------------------------------*/ |
Stefan Roese | 952e776 | 2009-09-24 09:55:50 +0200 | [diff] [blame] | 104 | mtdcr(UIC0SR, 0xffffffff); /* clear all */ |
| 105 | mtdcr(UIC0ER, 0x00000000); /* disable all */ |
| 106 | mtdcr(UIC0CR, 0x00000001); /* UIC1 crit is critical */ |
| 107 | mtdcr(UIC0PR, 0xfffffe13); /* per ref-board manual */ |
| 108 | mtdcr(UIC0TR, 0x01c00008); /* per ref-board manual */ |
| 109 | mtdcr(UIC0VR, 0x00000001); /* int31 highest, base=0x000 */ |
| 110 | mtdcr(UIC0SR, 0xffffffff); /* clear all */ |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 111 | |
Stefan Roese | 952e776 | 2009-09-24 09:55:50 +0200 | [diff] [blame] | 112 | mtdcr(UIC1SR, 0xffffffff); /* clear all */ |
| 113 | mtdcr(UIC1ER, 0x00000000); /* disable all */ |
| 114 | mtdcr(UIC1CR, 0x00000000); /* all non-critical */ |
| 115 | mtdcr(UIC1PR, 0xffffe0ff); /* per ref-board manual */ |
| 116 | mtdcr(UIC1TR, 0x00ffc000); /* per ref-board manual */ |
| 117 | mtdcr(UIC1VR, 0x00000001); /* int31 highest, base=0x000 */ |
| 118 | mtdcr(UIC1SR, 0xffffffff); /* clear all */ |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 119 | |
| 120 | return 0; |
| 121 | } |
| 122 | |
| 123 | int checkboard(void) |
| 124 | { |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 125 | char *s = getenv("serial#"); |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 126 | |
| 127 | printf("Board: P3P440"); |
| 128 | if (s != NULL) { |
| 129 | puts(", serial# "); |
| 130 | puts(s); |
| 131 | } |
| 132 | |
| 133 | if (is_monarch()) { |
| 134 | puts(", Monarch"); |
| 135 | } else { |
| 136 | puts(", None-Monarch"); |
| 137 | } |
| 138 | |
| 139 | putc('\n'); |
| 140 | |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 141 | return (0); |
| 142 | } |
| 143 | |
| 144 | int misc_init_r (void) |
| 145 | { |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 146 | /* |
| 147 | * Adjust flash start and offset to detected values |
| 148 | */ |
| 149 | gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize; |
| 150 | gd->bd->bi_flashoffset = 0; |
| 151 | |
| 152 | /* |
| 153 | * Check if only one FLASH bank is available |
| 154 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 155 | if (gd->bd->bi_flashsize != CONFIG_SYS_MAX_FLASH_BANKS * (0 - CONFIG_SYS_FLASH0)) { |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 156 | mtebc(PB1CR, 0); /* disable cs */ |
| 157 | mtebc(PB1AP, 0); |
| 158 | mtebc(PB2CR, 0); /* disable cs */ |
| 159 | mtebc(PB2AP, 0); |
| 160 | mtebc(PB3CR, 0); /* disable cs */ |
| 161 | mtebc(PB3AP, 0); |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | return 0; |
| 165 | } |
| 166 | |
| 167 | /************************************************************************* |
Stefan Roese | 9a81c61 | 2009-10-29 16:54:52 +0100 | [diff] [blame] | 168 | * Override weak is_pci_host() |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 169 | * |
| 170 | * This routine is called to determine if a pci scan should be |
| 171 | * performed. With various hardware environments (especially cPCI and |
| 172 | * PPMC) it's insufficient to depend on the state of the arbiter enable |
| 173 | * bit in the strap register, or generic host/adapter assumptions. |
| 174 | * |
| 175 | * Rather than hard-code a bad assumption in the general 440 code, the |
| 176 | * 440 pci code requires the board to decide at runtime. |
| 177 | * |
| 178 | * Return 0 for adapter mode, non-zero for host (monarch) mode. |
| 179 | * |
| 180 | * |
| 181 | ************************************************************************/ |
| 182 | #if defined(CONFIG_PCI) |
| 183 | int is_pci_host(struct pci_controller *hose) |
| 184 | { |
| 185 | if (is_monarch()) { |
| 186 | wait_for_pci_ready(); |
| 187 | return 1; /* return 1 for host controller */ |
| 188 | } else { |
| 189 | return 0; /* return 0 for adapter controller */ |
| 190 | } |
| 191 | } |
| 192 | #endif /* defined(CONFIG_PCI) */ |