Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2000-2005 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 23 | |
| 24 | #include <common.h> |
| 25 | #include <asm/processor.h> |
Stefan Roese | 779e975 | 2007-08-14 14:44:41 +0200 | [diff] [blame] | 26 | #include <asm/io.h> |
| 27 | |
| 28 | long int spd_sdram(void); |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 29 | |
| 30 | int board_early_init_f(void) |
| 31 | { |
Stefan Roese | 952e776 | 2009-09-24 09:55:50 +0200 | [diff] [blame] | 32 | mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */ |
| 33 | mtdcr(UIC0ER, 0x00000000); /* disable all ints */ |
| 34 | mtdcr(UIC0CR, 0x00000010); |
| 35 | mtdcr(UIC0PR, 0xFFFF7FF0); /* set int polarities */ |
| 36 | mtdcr(UIC0TR, 0x00000010); /* set int trigger levels */ |
| 37 | mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */ |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 38 | |
Stefan Roese | 779e975 | 2007-08-14 14:44:41 +0200 | [diff] [blame] | 39 | /* |
| 40 | * Configure CPC0_PCI to enable PerWE as output |
| 41 | * and enable the internal PCI arbiter if selected |
| 42 | */ |
| 43 | if (in_8((void *)FPGA_REG1) & FPGA_REG1_PCI_INT_ARB) |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 44 | mtdcr(CPC0_PCI, CPC0_PCI_HOST_CFG_EN | CPC0_PCI_ARBIT_EN); |
Stefan Roese | 779e975 | 2007-08-14 14:44:41 +0200 | [diff] [blame] | 45 | else |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 46 | mtdcr(CPC0_PCI, CPC0_PCI_HOST_CFG_EN); |
Stefan Roese | 779e975 | 2007-08-14 14:44:41 +0200 | [diff] [blame] | 47 | |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 48 | return 0; |
| 49 | } |
| 50 | |
| 51 | /* |
| 52 | * Check Board Identity: |
| 53 | */ |
| 54 | int checkboard(void) |
| 55 | { |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame^] | 56 | char buf[64]; |
| 57 | int i = getenv_f("serial#", buf, sizeof(buf)); |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 58 | |
| 59 | puts("Board: Bubinga - AMCC PPC405EP Evaluation Board"); |
| 60 | |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame^] | 61 | if (i > 0) { |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 62 | puts(", serial# "); |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame^] | 63 | puts(buf); |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 64 | } |
| 65 | putc('\n'); |
| 66 | |
| 67 | return (0); |
| 68 | } |
| 69 | |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 70 | /* ------------------------------------------------------------------------- |
| 71 | initdram(int board_type) reads EEPROM via I2c. EEPROM contains all of |
| 72 | the necessary info for SDRAM controller configuration |
| 73 | ------------------------------------------------------------------------- */ |
Becky Bruce | 9973e3c | 2008-06-09 16:03:40 -0500 | [diff] [blame] | 74 | phys_size_t initdram(int board_type) |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 75 | { |
| 76 | long int ret; |
| 77 | |
| 78 | ret = spd_sdram(); |
| 79 | return ret; |
| 80 | } |