📄 canyonlands.c
字号:
/* * (C) Copyright 2008 * Stefan Roese, DENX Software Engineering, sr@denx.de. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA */#include <common.h>#include <ppc440.h>#include <libfdt.h>#include <fdt_support.h>#include <i2c.h>#include <asm/processor.h>#include <asm/io.h>#include <asm/mmu.h>#include <asm/4xx_pcie.h>#include <asm/gpio.h>extern flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS]; /* info for FLASH chips */DECLARE_GLOBAL_DATA_PTR;#define CONFIG_SYS_BCSR3_PCIE 0x10#define BOARD_CANYONLANDS_PCIE 1#define BOARD_CANYONLANDS_SATA 2#define BOARD_GLACIER 3#define BOARD_ARCHES 4#if defined(CONFIG_ARCHES)/* * FPGA read/write helper macros */static inline int board_fpga_read(int offset){ int data; data = in_8((void *)(CONFIG_SYS_FPGA_BASE + offset)); return data;}static inline void board_fpga_write(int offset, int data){ out_8((void *)(CONFIG_SYS_FPGA_BASE + offset), data);}/* * CPLD read/write helper macros */static inline int board_cpld_read(int offset){ int data; out_8((void *)(CONFIG_SYS_CPLD_ADDR), offset); data = in_8((void *)(CONFIG_SYS_CPLD_DATA)); return data;}static inline void board_cpld_write(int offset, int data){ out_8((void *)(CONFIG_SYS_CPLD_ADDR), offset); out_8((void *)(CONFIG_SYS_CPLD_DATA), data);}#endif /* defined(CONFIG_ARCHES) */int board_early_init_f(void){#if !defined(CONFIG_ARCHES) u32 sdr0_cust0; u32 pvr = get_pvr();#endif /* * Setup the interrupt controller polarities, triggers, etc. */ mtdcr(uic0sr, 0xffffffff); /* clear all */ mtdcr(uic0er, 0x00000000); /* disable all */ mtdcr(uic0cr, 0x00000005); /* ATI & UIC1 crit are critical */ mtdcr(uic0pr, 0xffffffff); /* per ref-board manual */ mtdcr(uic0tr, 0x00000000); /* per ref-board manual */ mtdcr(uic0vr, 0x00000000); /* int31 highest, base=0x000 */ mtdcr(uic0sr, 0xffffffff); /* clear all */ mtdcr(uic1sr, 0xffffffff); /* clear all */ mtdcr(uic1er, 0x00000000); /* disable all */ mtdcr(uic1cr, 0x00000000); /* all non-critical */ mtdcr(uic1pr, 0xffffffff); /* per ref-board manual */ mtdcr(uic1tr, 0x00000000); /* per ref-board manual */ mtdcr(uic1vr, 0x00000000); /* int31 highest, base=0x000 */ mtdcr(uic1sr, 0xffffffff); /* clear all */ mtdcr(uic2sr, 0xffffffff); /* clear all */ mtdcr(uic2er, 0x00000000); /* disable all */ mtdcr(uic2cr, 0x00000000); /* all non-critical */ mtdcr(uic2pr, 0xffffffff); /* per ref-board manual */ mtdcr(uic2tr, 0x00000000); /* per ref-board manual */ mtdcr(uic2vr, 0x00000000); /* int31 highest, base=0x000 */ mtdcr(uic2sr, 0xffffffff); /* clear all */ mtdcr(uic3sr, 0xffffffff); /* clear all */ mtdcr(uic3er, 0x00000000); /* disable all */ mtdcr(uic3cr, 0x00000000); /* all non-critical */ mtdcr(uic3pr, 0xffffffff); /* per ref-board manual */ mtdcr(uic3tr, 0x00000000); /* per ref-board manual */ mtdcr(uic3vr, 0x00000000); /* int31 highest, base=0x000 */ mtdcr(uic3sr, 0xffffffff); /* clear all */#if !defined(CONFIG_ARCHES) /* SDR Setting - enable NDFC */ mfsdr(SDR0_CUST0, sdr0_cust0); sdr0_cust0 = SDR0_CUST0_MUX_NDFC_SEL | SDR0_CUST0_NDFC_ENABLE | SDR0_CUST0_NDFC_BW_8_BIT | SDR0_CUST0_NDFC_ARE_MASK | SDR0_CUST0_NDFC_BAC_ENCODE(3) | (0x80000000 >> (28 + CONFIG_SYS_NAND_CS)); mtsdr(SDR0_CUST0, sdr0_cust0);#endif /* * Configure PFC (Pin Function Control) registers * UART0: 4 pins */ mtsdr(SDR0_PFC1, 0x00040000); /* Enable PCI host functionality in SDR0_PCI0 */ mtsdr(SDR0_PCI0, 0xe0000000);#if !defined(CONFIG_ARCHES) /* Enable ethernet and take out of reset */ out_8((void *)CONFIG_SYS_BCSR_BASE + 6, 0); /* Remove NOR-FLASH, NAND-FLASH & EEPROM hardware write protection */ out_8((void *)CONFIG_SYS_BCSR_BASE + 5, 0); /* Enable USB host & USB-OTG */ out_8((void *)CONFIG_SYS_BCSR_BASE + 7, 0); mtsdr(SDR0_SRST1, 0); /* Pull AHB out of reset default=1 */ /* Setup PLB4-AHB bridge based on the system address map */ mtdcr(AHB_TOP, 0x8000004B); mtdcr(AHB_BOT, 0x8000004B); if ((pvr == PVR_460EX_RA) || (pvr == PVR_460EX_SE_RA)) { /* * Configure USB-STP pins as alternate and not GPIO * It seems to be neccessary to configure the STP pins as GPIO * input at powerup (perhaps while USB reset is asserted). So * we configure those pins to their "real" function now. */ gpio_config(16, GPIO_OUT, GPIO_ALT1, GPIO_OUT_1); gpio_config(19, GPIO_OUT, GPIO_ALT1, GPIO_OUT_1); }#endif return 0;}#if !defined(CONFIG_ARCHES)static void canyonlands_sata_init(int board_type){ u32 reg; if (board_type == BOARD_CANYONLANDS_SATA) { /* Put SATA in reset */ SDR_WRITE(SDR0_SRST1, 0x00020001); /* Set the phy for SATA, not PCI-E port 0 */ reg = SDR_READ(PESDR0_PHY_CTL_RST); SDR_WRITE(PESDR0_PHY_CTL_RST, (reg & 0xeffffffc) | 0x00000001); reg = SDR_READ(PESDR0_L0CLK); SDR_WRITE(PESDR0_L0CLK, (reg & 0xfffffff8) | 0x00000007); SDR_WRITE(PESDR0_L0CDRCTL, 0x00003111); SDR_WRITE(PESDR0_L0DRV, 0x00000104); /* Bring SATA out of reset */ SDR_WRITE(SDR0_SRST1, 0x00000000); }}#endif /* !defined(CONFIG_ARCHES) */int get_cpu_num(void){ int cpu = NA_OR_UNKNOWN_CPU;#if defined(CONFIG_ARCHES) int cpu_num; cpu_num = board_fpga_read(0x3); /* sanity check; assume cpu numbering starts and increments from 0 */ if ((cpu_num >= 0) && (cpu_num < CONFIG_BD_NUM_CPUS)) cpu = cpu_num;#endif return cpu;}#if !defined(CONFIG_ARCHES)int checkboard(void){ char *s = getenv("serial#"); u32 pvr = get_pvr(); if ((pvr == PVR_460GT_RA) || (pvr == PVR_460GT_SE_RA)) { printf("Board: Glacier - AMCC PPC460GT Evaluation Board"); gd->board_type = BOARD_GLACIER; } else { printf("Board: Canyonlands - AMCC PPC460EX Evaluation Board"); if (in_8((void *)(CONFIG_SYS_BCSR_BASE + 3)) & CONFIG_SYS_BCSR3_PCIE) gd->board_type = BOARD_CANYONLANDS_PCIE; else gd->board_type = BOARD_CANYONLANDS_SATA; } switch (gd->board_type) { case BOARD_CANYONLANDS_PCIE: case BOARD_GLACIER: puts(", 2*PCIe"); break; case BOARD_CANYONLANDS_SATA: puts(", 1*PCIe/1*SATA"); break; } printf(", Rev. %X", in_8((void *)(CONFIG_SYS_BCSR_BASE + 0))); if (s != NULL) { puts(", serial# "); puts(s); } putc('\n'); canyonlands_sata_init(gd->board_type); return (0);}#else /* defined(CONFIG_ARCHES) */int checkboard(void){ char *s = getenv("serial#"); printf("Board: Arches - AMCC DUAL PPC460GT Reference Design\n"); printf(" Revision %02x.%02x ", board_fpga_read(0x0), board_fpga_read(0x1)); gd->board_type = BOARD_ARCHES; /* Only CPU0 has access to CPLD registers */ if (get_cpu_num() == 0) { u8 cfg_sw = board_cpld_read(0x1); printf("(FPGA=%02x, CPLD=%02x)\n", board_fpga_read(0x2), board_cpld_read(0x0)); printf(" Configuration Switch %d%d%d%d\n", ((cfg_sw >> 3) & 0x01), ((cfg_sw >> 2) & 0x01), ((cfg_sw >> 1) & 0x01), ((cfg_sw >> 0) & 0x01)); } else printf("(FPGA=%02x, CPLD=xx)\n", board_fpga_read(0x2)); if (s != NULL) printf(" Serial# %s\n", s); return 0;}#endif /* !defined(CONFIG_ARCHES) *//* * Override the default functions in cpu/ppc4xx/44x_spd_ddr2.c with * board specific values. */u32 ddr_wrdtr(u32 default_val) { return (SDRAM_WRDTR_LLWP_1_CYC | SDRAM_WRDTR_WTR_180_DEG_ADV | 0x823);}u32 ddr_clktr(u32 default_val) { return (SDRAM_CLKTR_CLKP_90_DEG_ADV);}#if defined(CONFIG_NAND_U_BOOT)/* * NAND booting U-Boot version uses a fixed initialization, since the whole * I2C SPD DIMM autodetection/calibration doesn't fit into the 4k of boot * code. */phys_size_t initdram(int board_type){ return CONFIG_SYS_MBYTES_SDRAM << 20;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -