📄 bcm91480a_devs.c
字号:
/* ********************************************************************* * Broadcom Common Firmware Environment (CFE) * * Board device initialization File: bcm91480a_devs.c * * This is the "C" part of the board support package. The * routines to create and initialize the console, wire up * device drivers, and do other customization live here. * * Author: Mitch Lichtenberg * ********************************************************************* * * Copyright 2000,2001,2002,2003 * Broadcom Corporation. All rights reserved. * * This software is furnished under license and may be used and * copied only in accordance with the following terms and * conditions. Subject to these conditions, you may download, * copy, install, use, modify and distribute modified or unmodified * copies of this software in source and/or binary form. No title * or ownership is transferred hereby. * * 1) Any source code used, modified or distributed must reproduce * and retain this copyright notice and list of conditions * as they appear in the source file. * * 2) No right is granted to use any trade name, trademark, or * logo of Broadcom Corporation. The "Broadcom Corporation" * name may not be used to endorse or promote products derived * from this software without the prior written permission of * Broadcom Corporation. * * 3) THIS SOFTWARE IS PROVIDED "AS-IS" AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING BUT NOT LIMITED TO, ANY IMPLIED * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR * PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT * SHALL BROADCOM BE LIABLE FOR ANY DAMAGES WHATSOEVER, AND IN * PARTICULAR, BROADCOM SHALL NOT BE LIABLE FOR DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR * TORT (INCLUDING NEGLIGENCE OR OTHERWISE), EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. ********************************************************************* */#include "cfe.h"#include "cfe_smbus.h"#include "sbmips.h"#include "env_subr.h"#include "bcm1480_regs.h"#include "bcm1480_scd.h"#include "bcm1480_mc.h"#include "sb1250_smbus.h"#include "bcm91480a.h"#include "dev_newflash.h"/* ********************************************************************* * Devices we're importing ********************************************************************* */extern cfe_driver_t promice_uart; /* promice serial port */extern cfe_driver_t sb1250_uart; /* SB1250 serial ports */extern cfe_driver_t sb1250_ether; /* SB1250 MACs */extern cfe_driver_t newflashdrv; /* AMD-style flash */#if CFG_PCIextern void pci_add_devices(int init);#endif#if CFG_TCPextern cfe_driver_t tcpconsole; /* TCP/IP console */#endif#if CFG_USBextern int usb_init(uint32_t addr);extern cfe_driver_t usb_disk; /* USB mass-storage */extern cfe_driver_t usb_uart; /* USB serial ports */#endifextern cfe_smbus_t sb1250_smbus; /* SiByte SMBus host */extern cfe_driver_t smbus_24lc128; /* Microchip EEPROM */extern cfe_driver_t smbus_m41t81clock; /* ST Micro clock */extern cfe_driver_t pcmciadrv; /* PCMCIA card *//* ********************************************************************* * Commands we're importing ********************************************************************* */extern int ui_docommands(char *);extern void ui_init_cpu1cmds(void);extern void ui_init_bcm91480acmds(void);extern int ui_init_corecmds(void);extern int ui_init_soccmds(void);extern int ui_init_testcmds(void);extern int ui_init_tempsensorcmds(void);extern int ui_init_toyclockcmds(void);extern int ui_init_memtestcmds(void);extern int ui_init_resetcmds(void);extern int ui_init_phycmds(void);extern int ui_init_spdcmds(void);extern int ui_init_ethertestcmds(void);extern int ui_init_flashtestcmds(void);extern int ui_init_disktestcmds(void);extern int ui_init_uarttestcmds(void);#if CFG_USBextern int ui_init_usbcmds(void);#endif/* ********************************************************************* * Some other stuff we use ********************************************************************* */extern void sb1250_show_cpu_type(void);/* ********************************************************************* * Some board-specific parameters ********************************************************************* *//* * Note! Configure the PROMICE for burst mode zero (one byte per * access). */#define PROMICE_BASE (0x1FDFFC00)#define PROMICE_WORDSIZE 1#define REAL_BOOTROM_SIZE (2*1024*1024) /* region is 4MB, but rom is 2MB *//* ********************************************************************* * SysConfig switch settings and related parameters ********************************************************************* */int bcm91480_board_rev;int bcm91480_config_switch;uint16_t bcm91480_part_type;#define PROMICE_CONSOLE 0x00000001/* ********************************************************************* * board_console_init() * * Add the console device and set it to be the primary * console. * * Input parameters: * nothing * * Return value: * nothing ********************************************************************* */void board_console_init(void){ uint64_t sysrev; uint64_t syscfg; sysrev = SBREADCSR(A_SCD_SYSTEM_REVISION); syscfg = SBREADCSR(A_SCD_SYSTEM_CFG); /* Console */ cfe_add_device(&sb1250_uart,A_BCM1480_DUART(0),0,0); cfe_add_device(&promice_uart,PROMICE_BASE,PROMICE_WORDSIZE,0); /* * Read the config switch and decide how we are going to set up * the console. This is actually board revision dependent. * * Note that the human-readable board revision is (bcm91480_board_rev+1). */ bcm91480_part_type = G_SYS_PART(sysrev); bcm91480_board_rev = G_BCM1480_SYS_CONFIG(syscfg) & 0x3; bcm91480_config_switch = (G_BCM1480_SYS_CONFIG(syscfg) >> 2) & 0x0F; cfe_startflags = 0; /* Set up CFE start flags based on config switch */ if (bcm91480_config_switch & 1) { cfe_startflags |= PROMICE_CONSOLE; } if (bcm91480_config_switch & 2) { cfe_startflags |= CFE_INIT_PCI; } /* Configure console */ if (cfe_startflags & PROMICE_CONSOLE) { cfe_set_console("promice0"); } else { cfe_set_console("uart0"); } /* * SMBus buses - need to be initialized before we attach * devices that use them. */ cfe_add_smbus(&sb1250_smbus,A_SMB_BASE(0),0); cfe_add_smbus(&sb1250_smbus,A_SMB_BASE(1),0); /* * NVRAM (environment variables) */ cfe_add_device(&smbus_24lc128,BIGEEPROM_SMBUS_CHAN_1,BIGEEPROM_SMBUS_DEV_1,0); cfe_set_envdevice("eeprom0"); /* Connect NVRAM subsystem to EEPROM */}/* ********************************************************************* * board_device_init() * * Initialize and add other devices. Add everything you need * for bootstrap here, like disk drives, flash memory, UARTs, * network controllers, etc. * * Input parameters: * nothing * * Return value: * nothing ********************************************************************* */void board_device_init(void){ uint64_t syscfg; uint64_t mcreg; syscfg = SBREADCSR(A_SCD_SYSTEM_CFG); /* * Print out the board version number. */ printf("%s board revision %d\n",CFG_BOARDNAME,bcm91480_board_rev); /* * UART channel B on primary DUART */ cfe_add_device(&sb1250_uart,A_BCM1480_DUART(0),1,0); /* * UARTs on second DUART, if enabled */ if (syscfg & M_BCM1480_SYS_DUART1_ENABLE) { cfe_add_device(&sb1250_uart,A_BCM1480_DUART(2),0,0); cfe_add_device(&sb1250_uart,A_BCM1480_DUART(2),1,0); }#ifndef _FUNCSIM_ /* * Boot ROM, using "new" flash driver */ cfe_add_device(&newflashdrv, BOOTROM_PHYS, REAL_BOOTROM_SIZE | FLASH_FLG_BUS8 | FLASH_FLG_DEV16, NULL); cfe_add_device(&newflashdrv, ALT_BOOTROM_PHYS, REAL_BOOTROM_SIZE | FLASH_FLG_BUS8 | FLASH_FLG_DEV16, NULL);#endif /*_FUNCSIM_*/ /* * This is the 24LC128 on SMBus0. CFE doesn't use it for anything, * but you can load data into it and then boot from it by changing a jumper. */ cfe_add_device(&smbus_24lc128,BIGEEPROM_SMBUS_CHAN,BIGEEPROM_SMBUS_DEV,0); /* * MACs - must init after environment, since the hw address is stored there */#if (!CFG_BOOTRAM && !CFG_L2_RAM) cfe_add_device(&sb1250_ether,A_MAC_BASE_0,0,env_getenv("ETH0_HWADDR")); cfe_add_device(&sb1250_ether,A_MAC_BASE_1,1,env_getenv("ETH1_HWADDR")); cfe_add_device(&sb1250_ether,A_MAC_BASE_2,2,env_getenv("ETH2_HWADDR"));#endif cfe_add_device(&sb1250_ether,A_MAC_BASE_3,3,env_getenv("ETH3_HWADDR")); /* * PCMCIA support, if enabled */#if 0 if (syscfg & M_BCM1480_SYS_PCMCIA_ENABLE) { cfe_add_device(&pcmciadrv,PCMCIA_PHYS,0,NULL); }#endif#if CFG_PCI pci_add_devices(cfe_startflags & CFE_INIT_PCI);#endif /* * Real-time clock */ cfe_add_device(&smbus_m41t81clock,M41T81_SMBUS_CHAN,M41T81_SMBUS_DEV,0); /* * Display config register and CPU type */ printf("Config switch: %d\n", bcm91480_config_switch); sb1250_show_cpu_type(); mcreg = SBREADCSR(A_BCM1480_MC_REGISTER(0,R_BCM1480_MC_CLOCK_CFG)); if (G_BCM1480_MC_CLK_RATIO(mcreg)) { printf("Memory controller #0: %dMHz\n", (cfe_cpu_speed / 2000000) * 4 / ((int)G_BCM1480_MC_CLK_RATIO(mcreg))); } mcreg = SBREADCSR(A_BCM1480_MC_REGISTER(1,R_BCM1480_MC_CLOCK_CFG)); if (G_BCM1480_MC_CLK_RATIO(mcreg)) { printf("Memory controller #1: %dMHz\n", (cfe_cpu_speed / 2000000) * 4 / ((int)G_BCM1480_MC_CLK_RATIO(mcreg))); } printf("Switch Clock: %dMHz\n", (cfe_cpu_speed * 2 / 1000000) / ((int)G_BCM1480_SYS_SW_DIV(syscfg))); /* * Some misc devices go here, mostly for playing. */#if CFG_TCP cfe_add_device(&tcpconsole,0,0,0);#endif#if CFG_USB usb_init(NULL); cfe_add_device(&usb_disk,0,0,0); cfe_add_device(&usb_uart,0,0,0);#endif}/* ********************************************************************* * board_device_reset() * * Reset devices. This call is done when the firmware is restarted, * as might happen when an operating system exits, just before the * "reset" command is applied to the installed devices. You can * do whatever board-specific things are here to keep the system * stable, like stopping DMA sources, interrupts, etc. * * Input parameters: * nothing * * Return value: * nothing ********************************************************************* */void board_device_reset(void){}/* ********************************************************************* * board_final_init() * * Do any final initialization, such as adding commands to the * user interface. * * If you don't want a user interface, put the startup code here. * This routine is called just before CFE starts its user interface. * * Input parameters: * nothing * * Return value: * nothing ********************************************************************* */void board_final_init(void){ ui_init_cpu1cmds(); ui_init_bcm91480acmds();#if 0 ui_init_corecmds();#endif ui_init_soccmds(); ui_init_testcmds(); ui_init_tempsensorcmds(); ui_init_memtestcmds(); ui_init_resetcmds(); ui_init_phycmds(); ui_init_spdcmds();#if CFG_USB ui_init_usbcmds();#endif ui_init_toyclockcmds(); ui_init_ethertestcmds(); ui_init_flashtestcmds(); ui_init_disktestcmds(); ui_init_uarttestcmds();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -