mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	The Linux coding style guide (Documentation/process/coding-style.rst) clearly says: It's a **mistake** to use typedef for structures and pointers. Besides, using typedef for structures is annoying when you try to make headers self-contained. Let's say you have the following function declaration in a header: void foo(bd_t *bd); This is not self-contained since bd_t is not defined. To tell the compiler what 'bd_t' is, you need to include <asm/u-boot.h> #include <asm/u-boot.h> void foo(bd_t *bd); Then, the include direcective pulls in more bloat needlessly. If you use 'struct bd_info' instead, it is enough to put a forward declaration as follows: struct bd_info; void foo(struct bd_info *bd); Right, typedef'ing bd_t is a mistake. I used coccinelle to generate this commit. The semantic patch that makes this change is as follows: <smpl> @@ typedef bd_t; @@ -bd_t +struct bd_info </smpl> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
		
			
				
	
	
		
			198 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			198 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0+
 | 
						|
/*
 | 
						|
 * (C) Copyright 2011
 | 
						|
 * egnite GmbH <info@egnite.de>
 | 
						|
 *
 | 
						|
 * (C) Copyright 2010
 | 
						|
 * Ole Reinhardt <ole.reinhardt@thermotemp.de>
 | 
						|
 */
 | 
						|
 | 
						|
/*
 | 
						|
 * Ethernut 5 general board support
 | 
						|
 *
 | 
						|
 * Ethernut is an open source hardware and software project for
 | 
						|
 * embedded Ethernet devices. Hardware layouts and CAD files are
 | 
						|
 * freely available under BSD-like license.
 | 
						|
 *
 | 
						|
 * Ethernut 5 is the first member of the Ethernut board family
 | 
						|
 * with U-Boot and Linux support. This implementation is based
 | 
						|
 * on the original work done by Ole Reinhardt, but heavily modified
 | 
						|
 * to support additional features and the latest board revision 5.0F.
 | 
						|
 *
 | 
						|
 * Main board components are by default:
 | 
						|
 *
 | 
						|
 * Atmel AT91SAM9XE512 CPU with 512 kBytes NOR Flash
 | 
						|
 * 2 x 64 MBytes Micron MT48LC32M16A2P SDRAM
 | 
						|
 * 512 MBytes Micron MT29F4G08ABADA NAND Flash
 | 
						|
 * 4 MBytes Atmel AT45DB321D DataFlash
 | 
						|
 * SMSC LAN8710 Ethernet PHY
 | 
						|
 * Atmel ATmega168 MCU used for power management
 | 
						|
 * Linear Technology LTC4411 PoE controller
 | 
						|
 *
 | 
						|
 * U-Boot relevant board interfaces are:
 | 
						|
 *
 | 
						|
 * 100 Mbit Ethernet with IEEE 802.3af PoE
 | 
						|
 * RS-232 serial port
 | 
						|
 * USB host and device
 | 
						|
 * MMC/SD-Card slot
 | 
						|
 * Expansion port with I2C, SPI and more...
 | 
						|
 *
 | 
						|
 * Typically the U-Boot image is loaded from serial DataFlash into
 | 
						|
 * SDRAM by the samboot boot loader, which is located in internal
 | 
						|
 * NOR Flash and provides all essential initializations like CPU
 | 
						|
 * and peripheral clocks and, of course, the SDRAM configuration.
 | 
						|
 *
 | 
						|
 * For testing purposes it is also possibly to directly transfer
 | 
						|
 * the image into SDRAM via JTAG. A tested configuration exists
 | 
						|
 * for the Turtelizer 2 hardware dongle and the OpenOCD software.
 | 
						|
 * In this case the latter will do the basic hardware configuration
 | 
						|
 * via its reset-init script.
 | 
						|
 *
 | 
						|
 * For additional information visit the project home page at
 | 
						|
 * http://www.ethernut.de/
 | 
						|
 */
 | 
						|
 | 
						|
#include <common.h>
 | 
						|
#include <init.h>
 | 
						|
#include <net.h>
 | 
						|
#include <netdev.h>
 | 
						|
#include <miiphy.h>
 | 
						|
#include <i2c.h>
 | 
						|
#include <mmc.h>
 | 
						|
#include <atmel_mci.h>
 | 
						|
 | 
						|
#include <asm/arch/at91sam9260.h>
 | 
						|
#include <asm/arch/at91sam9260_matrix.h>
 | 
						|
#include <asm/arch/at91sam9_smc.h>
 | 
						|
#include <asm/arch/at91_common.h>
 | 
						|
#include <asm/arch/clk.h>
 | 
						|
#include <asm/arch/gpio.h>
 | 
						|
#include <asm/io.h>
 | 
						|
#include <asm/gpio.h>
 | 
						|
 | 
						|
#include "ethernut5_pwrman.h"
 | 
						|
 | 
						|
DECLARE_GLOBAL_DATA_PTR;
 | 
						|
 | 
						|
/*
 | 
						|
 * This is called last during early initialization. Most of the basic
 | 
						|
 * hardware interfaces are up and running.
 | 
						|
 *
 | 
						|
 * The SDRAM hardware has been configured by the first stage boot loader.
 | 
						|
 * We only need to announce its size, using u-boot's memory check.
 | 
						|
 */
 | 
						|
int dram_init(void)
 | 
						|
{
 | 
						|
	gd->ram_size = get_ram_size(
 | 
						|
			(void *)CONFIG_SYS_SDRAM_BASE,
 | 
						|
			CONFIG_SYS_SDRAM_SIZE);
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
#ifdef CONFIG_CMD_NAND
 | 
						|
static void ethernut5_nand_hw_init(void)
 | 
						|
{
 | 
						|
	struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
 | 
						|
	struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX;
 | 
						|
	unsigned long csa;
 | 
						|
 | 
						|
	/* Assign CS3 to NAND/SmartMedia Interface */
 | 
						|
	csa = readl(&matrix->ebicsa);
 | 
						|
	csa |= AT91_MATRIX_CS3A_SMC_SMARTMEDIA;
 | 
						|
	writel(csa, &matrix->ebicsa);
 | 
						|
 | 
						|
	/* Configure SMC CS3 for NAND/SmartMedia */
 | 
						|
	writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
 | 
						|
		AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
 | 
						|
		&smc->cs[3].setup);
 | 
						|
	writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
 | 
						|
		AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
 | 
						|
		&smc->cs[3].pulse);
 | 
						|
	writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5),
 | 
						|
		&smc->cs[3].cycle);
 | 
						|
	writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
 | 
						|
		AT91_SMC_MODE_EXNW_DISABLE |
 | 
						|
		AT91_SMC_MODE_DBW_8 |
 | 
						|
		AT91_SMC_MODE_TDF_CYCLE(2),
 | 
						|
		&smc->cs[3].mode);
 | 
						|
 | 
						|
#ifdef CONFIG_SYS_NAND_READY_PIN
 | 
						|
	/* Ready pin is optional. */
 | 
						|
	at91_set_pio_input(CONFIG_SYS_NAND_READY_PIN, 1);
 | 
						|
#endif
 | 
						|
	gpio_direction_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
/*
 | 
						|
 * This is called first during late initialization.
 | 
						|
 */
 | 
						|
int board_init(void)
 | 
						|
{
 | 
						|
	at91_periph_clk_enable(ATMEL_ID_PIOA);
 | 
						|
	at91_periph_clk_enable(ATMEL_ID_PIOB);
 | 
						|
	at91_periph_clk_enable(ATMEL_ID_PIOC);
 | 
						|
 | 
						|
	/* Set adress of boot parameters. */
 | 
						|
	gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
 | 
						|
	/* Initialize UARTs and power management. */
 | 
						|
	ethernut5_power_init();
 | 
						|
#ifdef CONFIG_CMD_NAND
 | 
						|
	ethernut5_nand_hw_init();
 | 
						|
#endif
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
#ifdef CONFIG_MACB
 | 
						|
/*
 | 
						|
 * This is optionally called last during late initialization.
 | 
						|
 */
 | 
						|
int board_eth_init(struct bd_info *bis)
 | 
						|
{
 | 
						|
	const char *devname;
 | 
						|
	unsigned short mode;
 | 
						|
 | 
						|
	at91_periph_clk_enable(ATMEL_ID_EMAC0);
 | 
						|
 | 
						|
	/* Need to reset PHY via power management. */
 | 
						|
	ethernut5_phy_reset();
 | 
						|
	/* Set peripheral pins. */
 | 
						|
	at91_macb_hw_init();
 | 
						|
	/* Basic EMAC initialization. */
 | 
						|
	if (macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC0, CONFIG_PHY_ID))
 | 
						|
		return -1;
 | 
						|
	/*
 | 
						|
	 * Early board revisions have a pull-down at the PHY's MODE0
 | 
						|
	 * strap pin, which forces the PHY into power down. Here we
 | 
						|
	 * switch to all-capable mode.
 | 
						|
	 */
 | 
						|
	devname = miiphy_get_current_dev();
 | 
						|
	if (miiphy_read(devname, 0, 18, &mode) == 0) {
 | 
						|
		/* Set mode[2:0] to 0b111. */
 | 
						|
		mode |= 0x00E0;
 | 
						|
		miiphy_write(devname, 0, 18, mode);
 | 
						|
		/* Soft reset overrides strap pins. */
 | 
						|
		miiphy_write(devname, 0, MII_BMCR, BMCR_RESET);
 | 
						|
	}
 | 
						|
	/* Sync environment with network devices, needed for nfsroot. */
 | 
						|
	return eth_init();
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef CONFIG_GENERIC_ATMEL_MCI
 | 
						|
int board_mmc_init(struct bd_info *bd)
 | 
						|
{
 | 
						|
	at91_periph_clk_enable(ATMEL_ID_MCI);
 | 
						|
 | 
						|
	/* Initialize MCI hardware. */
 | 
						|
	at91_mci_hw_init();
 | 
						|
	/* Register the device. */
 | 
						|
	return atmel_mci_init((void *)ATMEL_BASE_MCI);
 | 
						|
}
 | 
						|
 | 
						|
int board_mmc_getcd(struct mmc *mmc)
 | 
						|
{
 | 
						|
	return !at91_get_pio_value(CONFIG_SYS_MMC_CD_PIN);
 | 
						|
}
 | 
						|
#endif
 |