wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2004 |
| 3 | * Tolunay Orkun, Nextio Inc., torkun@nextio.com |
| 4 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <asm/processor.h> |
| 10 | #include <i2c.h> |
| 11 | #include <miiphy.h> |
Stefan Roese | b36df56 | 2010-09-09 19:18:00 +0200 | [diff] [blame] | 12 | #include <asm/ppc4xx-emac.h> |
wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 13 | |
Stefan Roese | bbeff30 | 2008-06-02 17:37:28 +0200 | [diff] [blame] | 14 | void sdram_init(void); |
| 15 | |
wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 16 | /* |
| 17 | * board_early_init_f: do early board initialization |
| 18 | * |
| 19 | */ |
| 20 | int board_early_init_f(void) |
| 21 | { |
| 22 | /*-------------------------------------------------------------------------+ |
| 23 | | Interrupt controller setup for the Walnut board. |
| 24 | | Note: IRQ 0-15 405GP internally generated; active high; level sensitive |
| 25 | | IRQ 16 405GP internally generated; active low; level sensitive |
| 26 | | IRQ 17-24 RESERVED |
| 27 | | IRQ 25 (EXT IRQ 0) FPGA; active high; level sensitive |
| 28 | | IRQ 26 (EXT IRQ 1) SMI; active high; level sensitive |
| 29 | | IRQ 27 (EXT IRQ 2) Not Used |
| 30 | | IRQ 28 (EXT IRQ 3) PCI SLOT 3; active low; level sensitive |
| 31 | | IRQ 29 (EXT IRQ 4) PCI SLOT 2; active low; level sensitive |
| 32 | | IRQ 30 (EXT IRQ 5) PCI SLOT 1; active low; level sensitive |
| 33 | | IRQ 31 (EXT IRQ 6) PCI SLOT 0; active low; level sensitive |
| 34 | | Note for Walnut board: |
| 35 | | An interrupt taken for the FPGA (IRQ 25) indicates that either |
| 36 | | the Mouse, Keyboard, IRDA, or External Expansion caused the |
| 37 | | interrupt. The FPGA must be read to determine which device |
| 38 | | caused the interrupt. The default setting of the FPGA clears |
| 39 | | |
| 40 | +-------------------------------------------------------------------------*/ |
| 41 | |
Stefan Roese | 952e776 | 2009-09-24 09:55:50 +0200 | [diff] [blame] | 42 | mtdcr (UIC0SR, 0xFFFFFFFF); /* clear all ints */ |
| 43 | mtdcr (UIC0ER, 0x00000000); /* disable all ints */ |
| 44 | mtdcr (UIC0CR, 0x00000000); /* set all to be non-critical */ |
| 45 | mtdcr (UIC0PR, 0xFFFFFF83); /* set int polarities */ |
| 46 | mtdcr (UIC0TR, 0x10000000); /* set int trigger levels */ |
| 47 | mtdcr (UIC0VCR, 0x00000001); /* set vect base=0,INT0 highest priority */ |
| 48 | mtdcr (UIC0SR, 0xFFFFFFFF); /* clear all ints */ |
wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 49 | |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 50 | mtebc (EBC0_CFG, 0xa8400000); /* EBC always driven */ |
wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 51 | |
| 52 | return 0; /* success */ |
| 53 | } |
| 54 | |
| 55 | /* |
| 56 | * checkboard: identify/verify the board we are running |
| 57 | * |
| 58 | * Remark: we just assume it is correct board here! |
| 59 | * |
| 60 | */ |
| 61 | int checkboard(void) |
| 62 | { |
| 63 | printf("BOARD: Cogent CSB472\n"); |
| 64 | |
| 65 | return 0; /* success */ |
| 66 | } |
| 67 | |
| 68 | /* |
| 69 | * initram: Determine the size of mounted DRAM |
| 70 | * |
| 71 | * Size is determined by reading SDRAM configuration registers as |
| 72 | * configured by initialization code |
| 73 | * |
| 74 | */ |
Becky Bruce | 9973e3c | 2008-06-09 16:03:40 -0500 | [diff] [blame] | 75 | phys_size_t initdram (int board_type) |
wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 76 | { |
| 77 | ulong tot_size; |
| 78 | ulong bank_size; |
| 79 | ulong tmp; |
| 80 | |
Stefan Roese | bbeff30 | 2008-06-02 17:37:28 +0200 | [diff] [blame] | 81 | /* |
| 82 | * ToDo: Move the asm init routine sdram_init() to this C file, |
| 83 | * or even better use some common ppc4xx code available |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 84 | * in arch/powerpc/cpu/ppc4xx |
Stefan Roese | bbeff30 | 2008-06-02 17:37:28 +0200 | [diff] [blame] | 85 | */ |
| 86 | sdram_init(); |
| 87 | |
wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 88 | tot_size = 0; |
| 89 | |
Stefan Roese | 95b602b | 2009-09-24 13:59:57 +0200 | [diff] [blame] | 90 | mtdcr (SDRAM0_CFGADDR, SDRAM0_B0CR); |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 91 | tmp = mfdcr (SDRAM0_CFGDATA); |
wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 92 | if (tmp & 0x00000001) { |
| 93 | bank_size = 0x00400000 << ((tmp >> 17) & 0x7); |
| 94 | tot_size += bank_size; |
| 95 | } |
| 96 | |
Stefan Roese | 95b602b | 2009-09-24 13:59:57 +0200 | [diff] [blame] | 97 | mtdcr (SDRAM0_CFGADDR, SDRAM0_B1CR); |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 98 | tmp = mfdcr (SDRAM0_CFGDATA); |
wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 99 | if (tmp & 0x00000001) { |
| 100 | bank_size = 0x00400000 << ((tmp >> 17) & 0x7); |
| 101 | tot_size += bank_size; |
| 102 | } |
| 103 | |
Stefan Roese | 95b602b | 2009-09-24 13:59:57 +0200 | [diff] [blame] | 104 | mtdcr (SDRAM0_CFGADDR, SDRAM0_B2CR); |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 105 | tmp = mfdcr (SDRAM0_CFGDATA); |
wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 106 | if (tmp & 0x00000001) { |
| 107 | bank_size = 0x00400000 << ((tmp >> 17) & 0x7); |
| 108 | tot_size += bank_size; |
| 109 | } |
| 110 | |
Stefan Roese | 95b602b | 2009-09-24 13:59:57 +0200 | [diff] [blame] | 111 | mtdcr (SDRAM0_CFGADDR, SDRAM0_B3CR); |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 112 | tmp = mfdcr (SDRAM0_CFGDATA); |
wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 113 | if (tmp & 0x00000001) { |
| 114 | bank_size = 0x00400000 << ((tmp >> 17) & 0x7); |
| 115 | tot_size += bank_size; |
| 116 | } |
| 117 | |
| 118 | return tot_size; |
| 119 | } |
| 120 | |
| 121 | /* |
| 122 | * last_stage_init: final configurations (such as PHY etc) |
| 123 | * |
| 124 | */ |
| 125 | int last_stage_init(void) |
| 126 | { |
| 127 | /* initialize the PHY */ |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 128 | miiphy_reset("ppc_4xx_eth0", CONFIG_PHY_ADDR); |
| 129 | |
| 130 | /* AUTO neg */ |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 131 | miiphy_write("ppc_4xx_eth0", CONFIG_PHY_ADDR, MII_BMCR, |
| 132 | BMCR_ANENABLE | BMCR_ANRESTART); |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 133 | |
| 134 | /* LEDs */ |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 135 | miiphy_write("ppc_4xx_eth0", CONFIG_PHY_ADDR, MII_NWAYTEST, 0x0d08); |
wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 136 | |
| 137 | return 0; /* success */ |
| 138 | } |