arm: Finish migration of CONFIG_MACH_TYPE
As this is only useful when booting with ATAGs, which are now largely disabled, remove this value for the remaining platforms. We have a few places in the code that had been testing for MACH_TYPE as a sort of internal logic. Update those to use different but still correct CONFIG symbols. Cc: Phil Sutter <phil@nwl.cc> Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
87e8d38a39
commit
5f588f831b
88 changed files with 24 additions and 268 deletions
10
README
10
README
|
@ -586,16 +586,6 @@ The following options need to be configured:
|
||||||
crash. This is needed for buggy hardware (uc101) where
|
crash. This is needed for buggy hardware (uc101) where
|
||||||
no pull down resistor is connected to the signal IDE5V_DD7.
|
no pull down resistor is connected to the signal IDE5V_DD7.
|
||||||
|
|
||||||
CONFIG_MACH_TYPE [relevant for ARM only][mandatory]
|
|
||||||
|
|
||||||
This setting is mandatory for all boards that have only one
|
|
||||||
machine type and must be used to specify the machine type
|
|
||||||
number as it appears in the ARM machine registry
|
|
||||||
(see https://www.arm.linux.org.uk/developer/machines/).
|
|
||||||
Only boards that have multiple machine types supported
|
|
||||||
in a single configuration file and the machine type is
|
|
||||||
runtime discoverable, do not have to use this setting.
|
|
||||||
|
|
||||||
- vxWorks boot parameters:
|
- vxWorks boot parameters:
|
||||||
|
|
||||||
bootvx constructs a valid bootline using the following
|
bootvx constructs a valid bootline using the following
|
||||||
|
|
|
@ -73,8 +73,10 @@ int board_early_init_f(void)
|
||||||
|
|
||||||
int board_init(void)
|
int board_init(void)
|
||||||
{
|
{
|
||||||
|
#ifdef CONFIG_MACH_TYPE
|
||||||
/* Machine number */
|
/* Machine number */
|
||||||
gd->bd->bi_arch_number = CONFIG_MACH_TYPE;
|
gd->bd->bi_arch_number = CONFIG_MACH_TYPE;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Boot parameters address */
|
/* Boot parameters address */
|
||||||
gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
|
gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
|
||||||
|
|
|
@ -15,14 +15,15 @@
|
||||||
|
|
||||||
static unsigned int syno_board_id(void)
|
static unsigned int syno_board_id(void)
|
||||||
{
|
{
|
||||||
|
#ifdef CONFIG_MACH_TYPE
|
||||||
switch (CONFIG_MACH_TYPE) {
|
switch (CONFIG_MACH_TYPE) {
|
||||||
case 527:
|
case 527:
|
||||||
return SYNO_DS109_ID;
|
return SYNO_DS109_ID;
|
||||||
case 3036:
|
case 3036:
|
||||||
return SYNO_AXP_4BAY_2BAY;
|
return SYNO_AXP_4BAY_2BAY;
|
||||||
default:
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static unsigned int usb_port_modes(void)
|
static unsigned int usb_port_modes(void)
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
#include <asm/gpio.h>
|
#include <asm/gpio.h>
|
||||||
|
|
||||||
/* TODO: Remove this code when the SPI switch is working */
|
/* TODO: Remove this code when the SPI switch is working */
|
||||||
#if (CONFIG_MACH_TYPE != MACH_TYPE_VENTANA)
|
#ifndef CONFIG_TARGET_VENTANA
|
||||||
void gpio_early_init_uart(void)
|
void gpio_early_init_uart(void)
|
||||||
{
|
{
|
||||||
/* Enable UART via GPIO_PI3 (port 8, bit 3) so serial console works */
|
/* Enable UART via GPIO_PI3 (port 8, bit 3) so serial console works */
|
||||||
|
|
|
@ -493,9 +493,9 @@ static int get_cfgblock_interactive(void)
|
||||||
else
|
else
|
||||||
tdx_hw_tag.prodid = COLIBRI_PXA270_520MHZ;
|
tdx_hw_tag.prodid = COLIBRI_PXA270_520MHZ;
|
||||||
}
|
}
|
||||||
#ifdef CONFIG_MACH_TYPE
|
#if defined(CONFIG_TARGET_APALIS_T30) || defined(CONFIG_TARGET_COLIBRI_T30)
|
||||||
else if (!strcmp("tegra30", soc)) {
|
else if (!strcmp("tegra30", soc)) {
|
||||||
if (CONFIG_MACH_TYPE == MACH_TYPE_APALIS_T30) {
|
#ifdef CONFIG_TARGET_APALIS_T30
|
||||||
if (it == 'y' || it == 'Y')
|
if (it == 'y' || it == 'Y')
|
||||||
tdx_hw_tag.prodid = APALIS_T30_IT;
|
tdx_hw_tag.prodid = APALIS_T30_IT;
|
||||||
else
|
else
|
||||||
|
@ -503,14 +503,14 @@ static int get_cfgblock_interactive(void)
|
||||||
tdx_hw_tag.prodid = APALIS_T30_1GB;
|
tdx_hw_tag.prodid = APALIS_T30_1GB;
|
||||||
else
|
else
|
||||||
tdx_hw_tag.prodid = APALIS_T30_2GB;
|
tdx_hw_tag.prodid = APALIS_T30_2GB;
|
||||||
} else {
|
#else
|
||||||
if (it == 'y' || it == 'Y')
|
if (it == 'y' || it == 'Y')
|
||||||
tdx_hw_tag.prodid = COLIBRI_T30_IT;
|
tdx_hw_tag.prodid = COLIBRI_T30_IT;
|
||||||
else
|
else
|
||||||
tdx_hw_tag.prodid = COLIBRI_T30;
|
tdx_hw_tag.prodid = COLIBRI_T30;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
#endif /* CONFIG_TARGET_APALIS_T30 || CONFIG_TARGET_COLIBRI_T30 */
|
||||||
#endif /* CONFIG_MACH_TYPE */
|
|
||||||
else if (!strcmp("tegra124", soc)) {
|
else if (!strcmp("tegra124", soc)) {
|
||||||
tdx_hw_tag.prodid = APALIS_TK1_2GB;
|
tdx_hw_tag.prodid = APALIS_TK1_2GB;
|
||||||
} else if (!strcmp("vf500", soc)) {
|
} else if (!strcmp("vf500", soc)) {
|
||||||
|
|
|
@ -16,7 +16,6 @@ CONFIG_SPL_FS_FAT=y
|
||||||
CONFIG_SPL_LIBDISK_SUPPORT=y
|
CONFIG_SPL_LIBDISK_SUPPORT=y
|
||||||
CONFIG_DISTRO_DEFAULTS=y
|
CONFIG_DISTRO_DEFAULTS=y
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
CONFIG_SYS_EXTRA_OPTIONS="MACH_TYPE=MACH_TYPE_IGEP0033"
|
|
||||||
# CONFIG_USE_BOOTCOMMAND is not set
|
# CONFIG_USE_BOOTCOMMAND is not set
|
||||||
CONFIG_SYS_CONSOLE_INFO_QUIET=y
|
CONFIG_SYS_CONSOLE_INFO_QUIET=y
|
||||||
CONFIG_SPL_FS_EXT4=y
|
CONFIG_SPL_FS_EXT4=y
|
||||||
|
|
|
@ -28,7 +28,7 @@ CONFIG_SPL_SPI_FLASH_SUPPORT=y
|
||||||
CONFIG_SPL_SPI=y
|
CONFIG_SPL_SPI=y
|
||||||
CONFIG_DEBUG_UART=y
|
CONFIG_DEBUG_UART=y
|
||||||
CONFIG_SYS_LOAD_ADDR=0x22000000
|
CONFIG_SYS_LOAD_ADDR=0x22000000
|
||||||
CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9G20,MACH_TYPE=2068"
|
CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9G20"
|
||||||
CONFIG_BOOTDELAY=3
|
CONFIG_BOOTDELAY=3
|
||||||
CONFIG_USE_BOOTCOMMAND=y
|
CONFIG_USE_BOOTCOMMAND=y
|
||||||
CONFIG_BOOTCOMMAND="run flash_self"
|
CONFIG_BOOTCOMMAND="run flash_self"
|
||||||
|
|
|
@ -20,7 +20,7 @@ CONFIG_SPL_SERIAL=y
|
||||||
CONFIG_SPL=y
|
CONFIG_SPL=y
|
||||||
CONFIG_ENV_OFFSET_REDUND=0x180000
|
CONFIG_ENV_OFFSET_REDUND=0x180000
|
||||||
CONFIG_SYS_LOAD_ADDR=0x70000000
|
CONFIG_SYS_LOAD_ADDR=0x70000000
|
||||||
CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9M10G45,MACH_TYPE=2066,SYS_USE_NANDFLASH"
|
CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9M10G45,SYS_USE_NANDFLASH"
|
||||||
CONFIG_BOOTDELAY=3
|
CONFIG_BOOTDELAY=3
|
||||||
CONFIG_USE_BOOTARGS=y
|
CONFIG_USE_BOOTARGS=y
|
||||||
CONFIG_BOOTARGS="console=ttyS0,115200 earlyprintk mtdparts=atmel_nand:256k(bootstrap)ro,512k(uboot)ro,256k(env),256k(env_redundant),256k(spare),512k(dtb),6M(kernel)ro,-(rootfs) root=/dev/mtdblock7 rw rootfstype=jffs2"
|
CONFIG_BOOTARGS="console=ttyS0,115200 earlyprintk mtdparts=atmel_nand:256k(bootstrap)ro,512k(uboot)ro,256k(env),256k(env_redundant),256k(spare),512k(dtb),6M(kernel)ro,-(rootfs) root=/dev/mtdblock7 rw rootfstype=jffs2"
|
||||||
|
|
|
@ -30,7 +30,7 @@ CONFIG_SPL_SPI_FLASH_SUPPORT=y
|
||||||
CONFIG_SPL_SPI=y
|
CONFIG_SPL_SPI=y
|
||||||
CONFIG_DEBUG_UART=y
|
CONFIG_DEBUG_UART=y
|
||||||
CONFIG_SYS_LOAD_ADDR=0x22000000
|
CONFIG_SYS_LOAD_ADDR=0x22000000
|
||||||
CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9G20,MACH_TYPE=2067"
|
CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9G20"
|
||||||
CONFIG_BOOTDELAY=3
|
CONFIG_BOOTDELAY=3
|
||||||
CONFIG_USE_BOOTARGS=y
|
CONFIG_USE_BOOTARGS=y
|
||||||
CONFIG_BOOTARGS="console=ttyS0,115200 earlyprintk mtdparts=atmel_nand:256k(bootstrap)ro,512k(uboot)ro,256k(env),256k(env_redundant),256k(spare),512k(dtb),6M(kernel)ro,-(rootfs) root=/dev/mtdblock7 rw rootfstype=jffs2"
|
CONFIG_BOOTARGS="console=ttyS0,115200 earlyprintk mtdparts=atmel_nand:256k(bootstrap)ro,512k(uboot)ro,256k(env),256k(env_redundant),256k(spare),512k(dtb),6M(kernel)ro,-(rootfs) root=/dev/mtdblock7 rw rootfstype=jffs2"
|
||||||
|
|
|
@ -25,8 +25,6 @@
|
||||||
|
|
||||||
#define CONFIG_SYS_BOOTM_LEN SZ_16M
|
#define CONFIG_SYS_BOOTM_LEN SZ_16M
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_AM335XEVM
|
|
||||||
|
|
||||||
/* Clock Defines */
|
/* Clock Defines */
|
||||||
#define V_OSCK 24000000 /* Clock output from T2 */
|
#define V_OSCK 24000000 /* Clock output from T2 */
|
||||||
#define V_SCLK (V_OSCK)
|
#define V_SCLK (V_OSCK)
|
||||||
|
|
|
@ -16,8 +16,6 @@
|
||||||
|
|
||||||
#define CONFIG_SYS_BOOTM_LEN (16 << 20)
|
#define CONFIG_SYS_BOOTM_LEN (16 << 20)
|
||||||
|
|
||||||
/*#define CONFIG_MACH_TYPE 3589 Until the next sync */
|
|
||||||
|
|
||||||
/* Clock Defines */
|
/* Clock Defines */
|
||||||
#define V_OSCK 24000000 /* Clock output from T2 */
|
#define V_OSCK 24000000 /* Clock output from T2 */
|
||||||
#define V_SCLK (V_OSCK)
|
#define V_SCLK (V_OSCK)
|
||||||
|
|
|
@ -14,8 +14,6 @@
|
||||||
|
|
||||||
#undef CONFIG_DISPLAY_BOARDINFO
|
#undef CONFIG_DISPLAY_BOARDINFO
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE 4886
|
|
||||||
|
|
||||||
#include <asm/arch/imx-regs.h>
|
#include <asm/arch/imx-regs.h>
|
||||||
#include <asm/mach-imx/gpio.h>
|
#include <asm/mach-imx/gpio.h>
|
||||||
|
|
||||||
|
|
|
@ -23,8 +23,6 @@
|
||||||
#define CONFIG_TEGRA_ENABLE_UARTA
|
#define CONFIG_TEGRA_ENABLE_UARTA
|
||||||
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
|
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_APALIS_T30
|
|
||||||
|
|
||||||
/* PCI networking support */
|
/* PCI networking support */
|
||||||
#define CONFIG_E1000_NO_NVM
|
#define CONFIG_E1000_NO_NVM
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,6 @@
|
||||||
|
|
||||||
#include "mx6_common.h"
|
#include "mx6_common.h"
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE 4501
|
|
||||||
#define CONFIG_MMCROOT "/dev/mmcblk0p1"
|
#define CONFIG_MMCROOT "/dev/mmcblk0p1"
|
||||||
|
|
||||||
/* MMC Configs */
|
/* MMC Configs */
|
||||||
|
|
|
@ -64,24 +64,6 @@
|
||||||
(ATMEL_BASE_SRAM1 + 16 * 1024 - GENERATED_GBL_DATA_SIZE)
|
(ATMEL_BASE_SRAM1 + 16 * 1024 - GENERATED_GBL_DATA_SIZE)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
|
||||||
* The (arm)linux board id set by generic code depending on configured board
|
|
||||||
* (see boards.cfg for different boards)
|
|
||||||
*/
|
|
||||||
#ifdef CONFIG_AT91SAM9G20
|
|
||||||
/* the sam9g20 variants have two different board ids */
|
|
||||||
# ifdef CONFIG_AT91SAM9G20EK_2MMC
|
|
||||||
/* we may be setup for the 2MMC variant of at91sam9g20ek */
|
|
||||||
# define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9G20EK_2MMC
|
|
||||||
# else
|
|
||||||
/* or the normal at91sam9g20ek */
|
|
||||||
# define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9G20EK
|
|
||||||
# endif
|
|
||||||
#else
|
|
||||||
/* otherwise default to good old at91sam9260ek */
|
|
||||||
# define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9260EK
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* NAND flash */
|
/* NAND flash */
|
||||||
#ifdef CONFIG_CMD_NAND
|
#ifdef CONFIG_CMD_NAND
|
||||||
#define CONFIG_SYS_MAX_NAND_DEVICE 1
|
#define CONFIG_SYS_MAX_NAND_DEVICE 1
|
||||||
|
|
|
@ -19,8 +19,6 @@
|
||||||
#include <linux/sizes.h>
|
#include <linux/sizes.h>
|
||||||
#include <configs/ti_am335x_common.h>
|
#include <configs/ti_am335x_common.h>
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_AM335XEVM
|
|
||||||
|
|
||||||
/* Clock Defines */
|
/* Clock Defines */
|
||||||
#define V_OSCK 24000000 /* Clock output from T2 */
|
#define V_OSCK 24000000 /* Clock output from T2 */
|
||||||
#define V_SCLK (V_OSCK)
|
#define V_SCLK (V_OSCK)
|
||||||
|
|
|
@ -20,8 +20,6 @@
|
||||||
#define CONFIG_TEGRA_ENABLE_UARTA
|
#define CONFIG_TEGRA_ENABLE_UARTA
|
||||||
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
|
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_BEAVER
|
|
||||||
|
|
||||||
/* SPI */
|
/* SPI */
|
||||||
#define CONFIG_TEGRA_SLINK_CTRLS 6
|
#define CONFIG_TEGRA_SLINK_CTRLS 6
|
||||||
#define CONFIG_SPI_FLASH_SIZE (4 << 20)
|
#define CONFIG_SPI_FLASH_SIZE (4 << 20)
|
||||||
|
|
|
@ -24,9 +24,6 @@
|
||||||
|
|
||||||
#define CONFIG_POWER_TPS65217
|
#define CONFIG_POWER_TPS65217
|
||||||
|
|
||||||
/*#define CONFIG_MACH_TYPE 3589*/
|
|
||||||
#define CONFIG_MACH_TYPE 0xFFFFFFFF /* TODO: check with kernel*/
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* When we have NAND flash we expect to be making use of mtdparts,
|
* When we have NAND flash we expect to be making use of mtdparts,
|
||||||
* both for ease of use in U-Boot and for passing information on to
|
* both for ease of use in U-Boot and for passing information on to
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
#define CONFIG_FSL_USDHC
|
#define CONFIG_FSL_USDHC
|
||||||
|
|
||||||
/* Boot */
|
/* Boot */
|
||||||
#define CONFIG_MACH_TYPE 0xFFFFFFFF
|
|
||||||
|
|
||||||
/* misc */
|
/* misc */
|
||||||
|
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
#define V_OSCK 26000000 /* Clock output from T2 */
|
#define V_OSCK 26000000 /* Clock output from T2 */
|
||||||
#define V_SCLK (V_OSCK)
|
#define V_SCLK (V_OSCK)
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE 3589
|
|
||||||
|
|
||||||
#ifndef CONFIG_SPL_BUILD
|
#ifndef CONFIG_SPL_BUILD
|
||||||
|
|
||||||
/* Default environment */
|
/* Default environment */
|
||||||
|
|
|
@ -23,8 +23,6 @@
|
||||||
#define V_OSCK 26000000 /* Clock output from T2 */
|
#define V_OSCK 26000000 /* Clock output from T2 */
|
||||||
#define V_SCLK (V_OSCK)
|
#define V_SCLK (V_OSCK)
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE 3589
|
|
||||||
|
|
||||||
#ifndef CONFIG_SPL_BUILD
|
#ifndef CONFIG_SPL_BUILD
|
||||||
|
|
||||||
/* Default environment */
|
/* Default environment */
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
#define CONFIG_TEGRA_ENABLE_UARTA
|
#define CONFIG_TEGRA_ENABLE_UARTA
|
||||||
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
|
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_CARDHU
|
|
||||||
|
|
||||||
/* SPI */
|
/* SPI */
|
||||||
#define CONFIG_TEGRA_SLINK_CTRLS 6
|
#define CONFIG_TEGRA_SLINK_CTRLS 6
|
||||||
#define CONFIG_SPI_FLASH_SIZE (4 << 20)
|
#define CONFIG_SPI_FLASH_SIZE (4 << 20)
|
||||||
|
|
|
@ -14,7 +14,6 @@
|
||||||
|
|
||||||
/* Machine config */
|
/* Machine config */
|
||||||
#define CONFIG_SYS_LITTLE_ENDIAN
|
#define CONFIG_SYS_LITTLE_ENDIAN
|
||||||
#define CONFIG_MACH_TYPE 4273
|
|
||||||
|
|
||||||
/* MMC */
|
/* MMC */
|
||||||
#define CONFIG_SYS_FSL_USDHC_NUM 3
|
#define CONFIG_SYS_FSL_USDHC_NUM 3
|
||||||
|
|
|
@ -17,8 +17,6 @@
|
||||||
#undef CONFIG_MAX_RAM_BANK_SIZE
|
#undef CONFIG_MAX_RAM_BANK_SIZE
|
||||||
#define CONFIG_MAX_RAM_BANK_SIZE (512 << 20) /* 512MB */
|
#define CONFIG_MAX_RAM_BANK_SIZE (512 << 20) /* 512MB */
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_CM_T335
|
|
||||||
|
|
||||||
/* Clock Defines */
|
/* Clock Defines */
|
||||||
#define V_OSCK 25000000 /* Clock output from T2 */
|
#define V_OSCK 25000000 /* Clock output from T2 */
|
||||||
#define V_SCLK (V_OSCK)
|
#define V_SCLK (V_OSCK)
|
||||||
|
|
|
@ -15,8 +15,6 @@
|
||||||
#define CONFIG_TEGRA_UARTA_SDIO1
|
#define CONFIG_TEGRA_UARTA_SDIO1
|
||||||
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
|
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_COLIBRI_TEGRA2
|
|
||||||
|
|
||||||
/* LCD support */
|
/* LCD support */
|
||||||
#define CONFIG_LCD_LOGO
|
#define CONFIG_LCD_LOGO
|
||||||
|
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
#define CONFIG_TEGRA_ENABLE_UARTA
|
#define CONFIG_TEGRA_ENABLE_UARTA
|
||||||
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
|
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_COLIBRI_T30
|
|
||||||
|
|
||||||
/* Increase console I/O buffer size */
|
/* Increase console I/O buffer size */
|
||||||
#undef CONFIG_SYS_CBSIZE
|
#undef CONFIG_SYS_CBSIZE
|
||||||
#define CONFIG_SYS_CBSIZE 1024
|
#define CONFIG_SYS_CBSIZE 1024
|
||||||
|
|
|
@ -17,8 +17,6 @@
|
||||||
#define CONFIG_TEGRA_ENABLE_UARTD
|
#define CONFIG_TEGRA_ENABLE_UARTD
|
||||||
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE
|
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_DALMORE
|
|
||||||
|
|
||||||
/* Environment in eMMC, at the end of 2nd "boot sector" */
|
/* Environment in eMMC, at the end of 2nd "boot sector" */
|
||||||
|
|
||||||
/* SPI */
|
/* SPI */
|
||||||
|
|
|
@ -12,8 +12,6 @@
|
||||||
#include <linux/sizes.h>
|
#include <linux/sizes.h>
|
||||||
#include <asm/arch/cpu.h>
|
#include <asm/arch/cpu.h>
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_DEVKIT3250
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Memory configurations
|
* Memory configurations
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
#define __CONFIG_H
|
#define __CONFIG_H
|
||||||
|
|
||||||
/* High Level Configuration Options */
|
/* High Level Configuration Options */
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_DEVKIT8000
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
|
* 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
|
||||||
|
|
|
@ -12,11 +12,6 @@
|
||||||
#ifndef _CONFIG_DNS325_H
|
#ifndef _CONFIG_DNS325_H
|
||||||
#define _CONFIG_DNS325_H
|
#define _CONFIG_DNS325_H
|
||||||
|
|
||||||
/*
|
|
||||||
* Machine number definition
|
|
||||||
*/
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_DNS325
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* High Level Configuration Options (easy to change)
|
* High Level Configuration Options (easy to change)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -12,8 +12,6 @@
|
||||||
#ifndef __CONFIG_DRACO_H
|
#ifndef __CONFIG_DRACO_H
|
||||||
#define __CONFIG_DRACO_H
|
#define __CONFIG_DRACO_H
|
||||||
|
|
||||||
#define CONFIG_SIEMENS_MACH_TYPE MACH_TYPE_DRACO
|
|
||||||
|
|
||||||
#include "siemens-am33x-common.h"
|
#include "siemens-am33x-common.h"
|
||||||
|
|
||||||
#define DDR_PLL_FREQ 303
|
#define DDR_PLL_FREQ 303
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
* High Level Configuration Options (easy to change)
|
* High Level Configuration Options (easy to change)
|
||||||
*/
|
*/
|
||||||
#define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
|
#define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_DREAMPLUG
|
|
||||||
|
|
||||||
#include "mv-plug-common.h"
|
#include "mv-plug-common.h"
|
||||||
|
|
||||||
|
|
|
@ -11,9 +11,6 @@
|
||||||
#ifndef _CONFIG_DS109_H
|
#ifndef _CONFIG_DS109_H
|
||||||
#define _CONFIG_DS109_H
|
#define _CONFIG_DS109_H
|
||||||
|
|
||||||
/* Provide the MACH_TYPE value that the vendor kernel requires. */
|
|
||||||
#define CONFIG_MACH_TYPE 527
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* High Level Configuration Options (easy to change)
|
* High Level Configuration Options (easy to change)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -6,9 +6,6 @@
|
||||||
#ifndef _CONFIG_SYNOLOGY_DS414_H
|
#ifndef _CONFIG_SYNOLOGY_DS414_H
|
||||||
#define _CONFIG_SYNOLOGY_DS414_H
|
#define _CONFIG_SYNOLOGY_DS414_H
|
||||||
|
|
||||||
/* Vendor kernel expects this MACH_TYPE */
|
|
||||||
#define CONFIG_MACH_TYPE 3036
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* High Level Configuration Options (easy to change)
|
* High Level Configuration Options (easy to change)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
/*
|
/*
|
||||||
* SoC and board defines
|
* SoC and board defines
|
||||||
*/
|
*/
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_LPC3XXX
|
|
||||||
#define CONFIG_BOARD_SIZE_LIMIT 0x000fffff /* maximum allowable size for full U-Boot binary */
|
#define CONFIG_BOARD_SIZE_LIMIT 0x000fffff /* maximum allowable size for full U-Boot binary */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -15,9 +15,6 @@
|
||||||
|
|
||||||
/* The first stage boot loader takes care of low level initialization. */
|
/* The first stage boot loader takes care of low level initialization. */
|
||||||
|
|
||||||
/* Set our official architecture number. */
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_ETHERNUT5
|
|
||||||
|
|
||||||
/* CPU information */
|
/* CPU information */
|
||||||
|
|
||||||
/* ARM asynchronous clock */
|
/* ARM asynchronous clock */
|
||||||
|
|
|
@ -13,8 +13,6 @@
|
||||||
|
|
||||||
#define CONFIG_SYS_SDRAM_BASE 0x40000000
|
#define CONFIG_SYS_SDRAM_BASE 0x40000000
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_SMDK5250
|
|
||||||
|
|
||||||
#define CONFIG_SPL_MAX_FOOTPRINT (14 * 1024)
|
#define CONFIG_SPL_MAX_FOOTPRINT (14 * 1024)
|
||||||
|
|
||||||
#define CONFIG_IRAM_STACK 0x02050000
|
#define CONFIG_IRAM_STACK 0x02050000
|
||||||
|
|
|
@ -12,9 +12,6 @@
|
||||||
|
|
||||||
#define CONFIG_EXYNOS5_DT
|
#define CONFIG_EXYNOS5_DT
|
||||||
|
|
||||||
/* Provide the MACH_TYPE value that the vendor kernel requires. */
|
|
||||||
#define CONFIG_MACH_TYPE 8002
|
|
||||||
|
|
||||||
#define CONFIG_VAR_SIZE_SPL
|
#define CONFIG_VAR_SIZE_SPL
|
||||||
|
|
||||||
#define CONFIG_IRAM_TOP 0x02074000
|
#define CONFIG_IRAM_TOP 0x02074000
|
||||||
|
|
|
@ -17,8 +17,6 @@
|
||||||
/* High Level Configuration Options */
|
/* High Level Configuration Options */
|
||||||
#define CONFIG_MX35
|
#define CONFIG_MX35
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_FLEA3
|
|
||||||
|
|
||||||
/* Set TEXT at the beginning of the NOR flash */
|
/* Set TEXT at the beginning of the NOR flash */
|
||||||
|
|
||||||
/* This is required to setup the ESDC controller */
|
/* This is required to setup the ESDC controller */
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
#include "imx6_spl.h" /* common IMX6 SPL configuration */
|
#include "imx6_spl.h" /* common IMX6 SPL configuration */
|
||||||
#include "mx6_common.h"
|
#include "mx6_common.h"
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE 4520 /* Gateworks Ventana Platform */
|
|
||||||
|
|
||||||
/* Serial */
|
/* Serial */
|
||||||
#define CONFIG_MXC_UART_BASE UART2_BASE
|
#define CONFIG_MXC_UART_BASE UART2_BASE
|
||||||
|
|
||||||
|
|
|
@ -23,8 +23,6 @@
|
||||||
#define CONFIG_SYS_NS16550_COM2 NV_PA_APB_UARTA_BASE
|
#define CONFIG_SYS_NS16550_COM2 NV_PA_APB_UARTA_BASE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_HARMONY
|
|
||||||
|
|
||||||
/* NAND support */
|
/* NAND support */
|
||||||
#define CONFIG_TEGRA_NAND
|
#define CONFIG_TEGRA_NAND
|
||||||
#define CONFIG_SYS_MAX_NAND_DEVICE 1
|
#define CONFIG_SYS_MAX_NAND_DEVICE 1
|
||||||
|
|
|
@ -14,11 +14,6 @@
|
||||||
#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
|
#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
|
||||||
#define CONFIG_KW88F6281 /* SOC Name */
|
#define CONFIG_KW88F6281 /* SOC Name */
|
||||||
|
|
||||||
/*
|
|
||||||
* Machine type
|
|
||||||
*/
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_ICONNECT
|
|
||||||
|
|
||||||
#include "mv-common.h"
|
#include "mv-common.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -25,8 +25,6 @@
|
||||||
#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
|
#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
|
||||||
#define CONFIG_KW88F6281 /* SOC Name */
|
#define CONFIG_KW88F6281 /* SOC Name */
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_KM_KIRKWOOD
|
|
||||||
|
|
||||||
#define CONFIG_NAND_ECC_BCH
|
#define CONFIG_NAND_ECC_BCH
|
||||||
|
|
||||||
/* include common defines/options for all Keymile boards */
|
/* include common defines/options for all Keymile boards */
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
#define __KZM9G_H
|
#define __KZM9G_H
|
||||||
|
|
||||||
#define CONFIG_SH73A0
|
#define CONFIG_SH73A0
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_KZM9G
|
|
||||||
|
|
||||||
#include <asm/arch/rmobile.h>
|
#include <asm/arch/rmobile.h>
|
||||||
|
|
||||||
|
|
|
@ -6,27 +6,6 @@
|
||||||
#ifndef _CONFIG_LACIE_KW_H
|
#ifndef _CONFIG_LACIE_KW_H
|
||||||
#define _CONFIG_LACIE_KW_H
|
#define _CONFIG_LACIE_KW_H
|
||||||
|
|
||||||
/*
|
|
||||||
* Machine number definition
|
|
||||||
*/
|
|
||||||
#if defined(CONFIG_INETSPACE_V2)
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_INETSPACE_V2
|
|
||||||
#elif defined(CONFIG_NETSPACE_V2)
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_NETSPACE_V2
|
|
||||||
#elif defined(CONFIG_NETSPACE_LITE_V2)
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_NETSPACE_LITE_V2
|
|
||||||
#elif defined(CONFIG_NETSPACE_MINI_V2)
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_NETSPACE_MINI_V2
|
|
||||||
#elif defined(CONFIG_NETSPACE_MAX_V2)
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_NETSPACE_MAX_V2
|
|
||||||
#elif defined(CONFIG_D2NET_V2)
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_D2NET_V2
|
|
||||||
#elif defined(CONFIG_NET2BIG_V2)
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_NET2BIG_V2
|
|
||||||
#else
|
|
||||||
#error "Unknown board"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* High Level Configuration Options (easy to change)
|
* High Level Configuration Options (easy to change)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -12,10 +12,8 @@
|
||||||
*/
|
*/
|
||||||
#if defined(CONFIG_LSCHLV2)
|
#if defined(CONFIG_LSCHLV2)
|
||||||
#define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lschl.cfg
|
#define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lschl.cfg
|
||||||
#define CONFIG_MACH_TYPE 3006
|
|
||||||
#elif defined(CONFIG_LSXHL)
|
#elif defined(CONFIG_LSXHL)
|
||||||
#define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lsxhl.cfg
|
#define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lsxhl.cfg
|
||||||
#define CONFIG_MACH_TYPE 2663
|
|
||||||
#else
|
#else
|
||||||
#error "unknown board"
|
#error "unknown board"
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -5,9 +5,6 @@
|
||||||
#ifndef __CONFIGS_MX23_OLINUXINO_H__
|
#ifndef __CONFIGS_MX23_OLINUXINO_H__
|
||||||
#define __CONFIGS_MX23_OLINUXINO_H__
|
#define __CONFIGS_MX23_OLINUXINO_H__
|
||||||
|
|
||||||
/* System configurations */
|
|
||||||
#define CONFIG_MACH_TYPE 4105
|
|
||||||
|
|
||||||
/* U-Boot Commands */
|
/* U-Boot Commands */
|
||||||
|
|
||||||
/* Memory configuration */
|
/* Memory configuration */
|
||||||
|
|
|
@ -8,9 +8,6 @@
|
||||||
#ifndef __CONFIGS_MX23EVK_H__
|
#ifndef __CONFIGS_MX23EVK_H__
|
||||||
#define __CONFIGS_MX23EVK_H__
|
#define __CONFIGS_MX23EVK_H__
|
||||||
|
|
||||||
/* System configurations */
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_MX23EVK
|
|
||||||
|
|
||||||
/* U-Boot Commands */
|
/* U-Boot Commands */
|
||||||
|
|
||||||
/* Memory configuration */
|
/* Memory configuration */
|
||||||
|
|
|
@ -10,9 +10,6 @@
|
||||||
#ifndef __CONFIGS_MX28EVK_H__
|
#ifndef __CONFIGS_MX28EVK_H__
|
||||||
#define __CONFIGS_MX28EVK_H__
|
#define __CONFIGS_MX28EVK_H__
|
||||||
|
|
||||||
/* System configurations */
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_MX28EVK
|
|
||||||
|
|
||||||
/* Memory configuration */
|
/* Memory configuration */
|
||||||
#define PHYS_SDRAM_1 0x40000000 /* Base address */
|
#define PHYS_SDRAM_1 0x40000000 /* Base address */
|
||||||
#define PHYS_SDRAM_1_SIZE 0x40000000 /* Max 1 GB RAM */
|
#define PHYS_SDRAM_1_SIZE 0x40000000 /* Max 1 GB RAM */
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
|
|
||||||
#include <asm/arch/imx-regs.h>
|
#include <asm/arch/imx-regs.h>
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_MX51_BABBAGE
|
|
||||||
/*
|
/*
|
||||||
* Hardware drivers
|
* Hardware drivers
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
#ifndef __CONFIG_H
|
#ifndef __CONFIG_H
|
||||||
#define __CONFIG_H
|
#define __CONFIG_H
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_MX53_LOCO
|
|
||||||
|
|
||||||
#include <asm/arch/imx-regs.h>
|
#include <asm/arch/imx-regs.h>
|
||||||
|
|
||||||
#define CONFIG_SYS_FSL_CLK
|
#define CONFIG_SYS_FSL_CLK
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
#include "imx6_spl.h"
|
#include "imx6_spl.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE 3529
|
|
||||||
#define CONFIG_MXC_UART_BASE UART4_BASE
|
#define CONFIG_MXC_UART_BASE UART4_BASE
|
||||||
#define CONSOLE_DEV "ttymxc3"
|
#define CONSOLE_DEV "ttymxc3"
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
#include "imx6_spl.h"
|
#include "imx6_spl.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE 3980
|
|
||||||
#define CONFIG_MXC_UART_BASE UART1_BASE
|
#define CONFIG_MXC_UART_BASE UART1_BASE
|
||||||
#define CONSOLE_DEV "ttymxc0"
|
#define CONSOLE_DEV "ttymxc0"
|
||||||
|
|
||||||
|
|
|
@ -14,8 +14,6 @@
|
||||||
#include "imx6_spl.h"
|
#include "imx6_spl.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_MX6SL_EVK
|
|
||||||
|
|
||||||
#define CONFIG_MXC_UART_BASE UART1_IPS_BASE_ADDR
|
#define CONFIG_MXC_UART_BASE UART1_IPS_BASE_ADDR
|
||||||
|
|
||||||
/* MMC Configs */
|
/* MMC Configs */
|
||||||
|
|
|
@ -11,11 +11,6 @@
|
||||||
#ifndef _CONFIG_NAS220_H
|
#ifndef _CONFIG_NAS220_H
|
||||||
#define _CONFIG_NAS220_H
|
#define _CONFIG_NAS220_H
|
||||||
|
|
||||||
/*
|
|
||||||
* Machine type ID
|
|
||||||
*/
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_RD88F6192_NAS
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* High Level Configuration Options (easy to change)
|
* High Level Configuration Options (easy to change)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
|
|
||||||
#include "mx6_common.h"
|
#include "mx6_common.h"
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE 3769
|
|
||||||
|
|
||||||
#define CONFIG_USBD_HS
|
#define CONFIG_USBD_HS
|
||||||
|
|
||||||
#define CONFIG_MXC_UART_BASE UART2_BASE
|
#define CONFIG_MXC_UART_BASE UART2_BASE
|
||||||
|
|
|
@ -19,8 +19,6 @@
|
||||||
#define CONFIG_SYS_PL310_BASE 0x10502000
|
#define CONFIG_SYS_PL310_BASE 0x10502000
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE 4289
|
|
||||||
|
|
||||||
#define CONFIG_SYS_SDRAM_BASE 0x40000000
|
#define CONFIG_SYS_SDRAM_BASE 0x40000000
|
||||||
#define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
|
#define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
|
||||||
#define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE
|
#define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
/*
|
/*
|
||||||
* High Level Configuration Options
|
* High Level Configuration Options
|
||||||
*/
|
*/
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_OMAP_4430SDP
|
|
||||||
|
|
||||||
#include <configs/ti_omap4_common.h>
|
#include <configs/ti_omap4_common.h>
|
||||||
|
|
||||||
|
|
|
@ -19,8 +19,6 @@
|
||||||
#define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE
|
#define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE
|
||||||
#define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
|
#define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_ORIGEN
|
|
||||||
|
|
||||||
#define CONFIG_SYS_MEM_TOP_HIDE (1 << 20) /* ram console */
|
#define CONFIG_SYS_MEM_TOP_HIDE (1 << 20) /* ram console */
|
||||||
|
|
||||||
#define CONFIG_SYS_MONITOR_BASE 0x00000000
|
#define CONFIG_SYS_MONITOR_BASE 0x00000000
|
||||||
|
|
|
@ -19,8 +19,6 @@
|
||||||
#define CONFIG_TEGRA_ENABLE_UARTA
|
#define CONFIG_TEGRA_ENABLE_UARTA
|
||||||
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
|
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_PAZ00
|
|
||||||
|
|
||||||
/* Environment in eMMC, at the end of 2nd "boot sector" */
|
/* Environment in eMMC, at the end of 2nd "boot sector" */
|
||||||
|
|
||||||
#include "tegra-common-post.h"
|
#include "tegra-common-post.h"
|
||||||
|
|
|
@ -14,9 +14,6 @@
|
||||||
|
|
||||||
/* Using 32K of volatile storage for environment */
|
/* Using 32K of volatile storage for environment */
|
||||||
|
|
||||||
#define MACH_TYPE_PDU001 5075
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_PDU001
|
|
||||||
|
|
||||||
/* Clock Defines */
|
/* Clock Defines */
|
||||||
#define V_OSCK 24000000 /* Clock output from T2 */
|
#define V_OSCK 24000000 /* Clock output from T2 */
|
||||||
#define V_SCLK (V_OSCK)
|
#define V_SCLK (V_OSCK)
|
||||||
|
|
|
@ -14,8 +14,6 @@
|
||||||
|
|
||||||
#include <configs/ti_am335x_common.h>
|
#include <configs/ti_am335x_common.h>
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_SBC_PHYCORE_AM335X
|
|
||||||
|
|
||||||
#ifdef CONFIG_MTD_RAW_NAND
|
#ifdef CONFIG_MTD_RAW_NAND
|
||||||
#define NANDARGS \
|
#define NANDARGS \
|
||||||
"mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
|
"mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
|
||||||
|
|
|
@ -27,8 +27,6 @@
|
||||||
|
|
||||||
#define CONFIG_SYS_AT91_CPU_NAME "AT91SAM9261"
|
#define CONFIG_SYS_AT91_CPU_NAME "AT91SAM9261"
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_PM9261
|
|
||||||
|
|
||||||
/* clocks */
|
/* clocks */
|
||||||
/* CKGR_MOR - enable main osc. */
|
/* CKGR_MOR - enable main osc. */
|
||||||
#define CONFIG_SYS_MOR_VAL \
|
#define CONFIG_SYS_MOR_VAL \
|
||||||
|
|
|
@ -27,8 +27,6 @@
|
||||||
|
|
||||||
#define CONFIG_SYS_AT91_CPU_NAME "AT91SAM9263"
|
#define CONFIG_SYS_AT91_CPU_NAME "AT91SAM9263"
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_PM9263
|
|
||||||
|
|
||||||
/* clocks */
|
/* clocks */
|
||||||
#define CONFIG_SYS_MOR_VAL \
|
#define CONFIG_SYS_MOR_VAL \
|
||||||
(AT91_PMC_MOR_MOSCEN | \
|
(AT91_PMC_MOR_MOSCEN | \
|
||||||
|
|
|
@ -12,11 +12,6 @@
|
||||||
#ifndef _CONFIG_POGO_E02_H
|
#ifndef _CONFIG_POGO_E02_H
|
||||||
#define _CONFIG_POGO_E02_H
|
#define _CONFIG_POGO_E02_H
|
||||||
|
|
||||||
/*
|
|
||||||
* Machine type definition and ID
|
|
||||||
*/
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_POGO_E02
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* High Level Configuration Options (easy to change)
|
* High Level Configuration Options (easy to change)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -13,8 +13,6 @@
|
||||||
#ifndef __CONFIG_PXM2_H
|
#ifndef __CONFIG_PXM2_H
|
||||||
#define __CONFIG_PXM2_H
|
#define __CONFIG_PXM2_H
|
||||||
|
|
||||||
#define CONFIG_SIEMENS_MACH_TYPE MACH_TYPE_PXM2
|
|
||||||
|
|
||||||
#include "siemens-am33x-common.h"
|
#include "siemens-am33x-common.h"
|
||||||
|
|
||||||
#define DDR_IOCTRL_VAL 0x18b
|
#define DDR_IOCTRL_VAL 0x18b
|
||||||
|
|
|
@ -22,21 +22,6 @@
|
||||||
(&((struct bcm2835_timer_regs *)BCM2835_TIMER_PHYSADDR)->clo)
|
(&((struct bcm2835_timer_regs *)BCM2835_TIMER_PHYSADDR)->clo)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
|
||||||
* 2835 is a SKU in a series for which the 2708 is the first or primary SoC,
|
|
||||||
* so 2708 has historically been used rather than a dedicated 2835 ID.
|
|
||||||
*
|
|
||||||
* We don't define a machine type for bcm2709/bcm2836 since the RPi Foundation
|
|
||||||
* chose to use someone else's previously registered machine ID (3139, MX51_GGC)
|
|
||||||
* rather than obtaining a valid ID:-/
|
|
||||||
*
|
|
||||||
* For the bcm2837, hopefully a machine type is not needed, since everything
|
|
||||||
* is DT.
|
|
||||||
*/
|
|
||||||
#ifdef CONFIG_BCM2835
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_BCM2708
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Memory layout */
|
/* Memory layout */
|
||||||
#define CONFIG_SYS_SDRAM_BASE 0x00000000
|
#define CONFIG_SYS_SDRAM_BASE 0x00000000
|
||||||
#define CONFIG_SYS_UBOOT_BASE CONFIG_SYS_TEXT_BASE
|
#define CONFIG_SYS_UBOOT_BASE CONFIG_SYS_TEXT_BASE
|
||||||
|
|
|
@ -13,8 +13,6 @@
|
||||||
#ifndef __CONFIG_RUT_H
|
#ifndef __CONFIG_RUT_H
|
||||||
#define __CONFIG_RUT_H
|
#define __CONFIG_RUT_H
|
||||||
|
|
||||||
#define CONFIG_SIEMENS_MACH_TYPE MACH_TYPE_RUT
|
|
||||||
|
|
||||||
#include "siemens-am33x-common.h"
|
#include "siemens-am33x-common.h"
|
||||||
|
|
||||||
#define RUT_IOCTRL_VAL 0x18b
|
#define RUT_IOCTRL_VAL 0x18b
|
||||||
|
|
|
@ -24,8 +24,6 @@
|
||||||
#define CONFIG_TEGRA_ENABLE_UARTD
|
#define CONFIG_TEGRA_ENABLE_UARTD
|
||||||
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE
|
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_SEABOARD
|
|
||||||
|
|
||||||
/* Environment in eMMC, at the end of 2nd "boot sector" */
|
/* Environment in eMMC, at the end of 2nd "boot sector" */
|
||||||
|
|
||||||
/* NAND support */
|
/* NAND support */
|
||||||
|
|
|
@ -18,10 +18,6 @@
|
||||||
#define CONFIG_DMA_COHERENT
|
#define CONFIG_DMA_COHERENT
|
||||||
#define CONFIG_DMA_COHERENT_SIZE (1 << 20)
|
#define CONFIG_DMA_COHERENT_SIZE (1 << 20)
|
||||||
|
|
||||||
#ifdef CONFIG_SIEMENS_MACH_TYPE
|
|
||||||
#define CONFIG_MACH_TYPE CONFIG_SIEMENS_MACH_TYPE
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* commands to include */
|
/* commands to include */
|
||||||
|
|
||||||
#ifndef CONFIG_SPL_BUILD
|
#ifndef CONFIG_SPL_BUILD
|
||||||
|
|
|
@ -45,7 +45,6 @@
|
||||||
#define CONFIG_SYS_MAXARGS 32
|
#define CONFIG_SYS_MAXARGS 32
|
||||||
|
|
||||||
/* setting board specific options */
|
/* setting board specific options */
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_SMARTWEB
|
|
||||||
#define CONFIG_SYS_AUTOLOAD "yes"
|
#define CONFIG_SYS_AUTOLOAD "yes"
|
||||||
#define CONFIG_RESET_TO_RETRY
|
#define CONFIG_RESET_TO_RETRY
|
||||||
|
|
||||||
|
|
|
@ -16,9 +16,6 @@
|
||||||
/* High Level Configuration Options */
|
/* High Level Configuration Options */
|
||||||
#define CONFIG_EXYNOS4210 1 /* which is a EXYNOS4210 SoC */
|
#define CONFIG_EXYNOS4210 1 /* which is a EXYNOS4210 SoC */
|
||||||
|
|
||||||
/* Mach Type */
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_SMDKV310
|
|
||||||
|
|
||||||
#define CONFIG_SYS_SDRAM_BASE 0x40000000
|
#define CONFIG_SYS_SDRAM_BASE 0x40000000
|
||||||
|
|
||||||
/* Handling Sleep Mode*/
|
/* Handling Sleep Mode*/
|
||||||
|
|
|
@ -16,6 +16,4 @@
|
||||||
*/
|
*/
|
||||||
#include <configs/sunxi-common.h>
|
#include <configs/sunxi-common.h>
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE (4104 | ((CONFIG_MACH_TYPE_COMPAT_REV) << 28))
|
|
||||||
|
|
||||||
#endif /* __CONFIG_H */
|
#endif /* __CONFIG_H */
|
||||||
|
|
|
@ -16,6 +16,4 @@
|
||||||
*/
|
*/
|
||||||
#include <configs/sunxi-common.h>
|
#include <configs/sunxi-common.h>
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE (4138 | ((CONFIG_MACH_TYPE_COMPAT_REV) << 28))
|
|
||||||
|
|
||||||
#endif /* __CONFIG_H */
|
#endif /* __CONFIG_H */
|
||||||
|
|
|
@ -20,6 +20,4 @@
|
||||||
*/
|
*/
|
||||||
#include <configs/sunxi-common.h>
|
#include <configs/sunxi-common.h>
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE (4283 | ((CONFIG_MACH_TYPE_COMPAT_REV) << 28))
|
|
||||||
|
|
||||||
#endif /* __CONFIG_H */
|
#endif /* __CONFIG_H */
|
||||||
|
|
|
@ -15,22 +15,6 @@
|
||||||
#include <asm/arch/cpu.h>
|
#include <asm/arch/cpu.h>
|
||||||
#include <linux/stringify.h>
|
#include <linux/stringify.h>
|
||||||
|
|
||||||
#ifdef CONFIG_OLD_SUNXI_KERNEL_COMPAT
|
|
||||||
/*
|
|
||||||
* The U-Boot workarounds bugs in the outdated buggy sunxi-3.4 kernels at the
|
|
||||||
* expense of restricting some features, so the regular machine id values can
|
|
||||||
* be used.
|
|
||||||
*/
|
|
||||||
# define CONFIG_MACH_TYPE_COMPAT_REV 0
|
|
||||||
#else
|
|
||||||
/*
|
|
||||||
* A compatibility guard to prevent loading outdated buggy sunxi-3.4 kernels.
|
|
||||||
* Only sunxi-3.4 kernels with appropriate fixes applied are able to pass
|
|
||||||
* beyond the machine id check.
|
|
||||||
*/
|
|
||||||
# define CONFIG_MACH_TYPE_COMPAT_REV 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef CONFIG_ARM64
|
#ifdef CONFIG_ARM64
|
||||||
#define CONFIG_SYS_BOOTM_LEN (32 << 20)
|
#define CONFIG_SYS_BOOTM_LEN (32 << 20)
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -12,8 +12,6 @@
|
||||||
|
|
||||||
/* General configuration */
|
/* General configuration */
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE 3980
|
|
||||||
|
|
||||||
#define CONFIG_SYS_HZ 1000
|
#define CONFIG_SYS_HZ 1000
|
||||||
|
|
||||||
/* Physical Memory Map */
|
/* Physical Memory Map */
|
||||||
|
|
|
@ -18,8 +18,6 @@
|
||||||
|
|
||||||
#include <asm/arch/omap.h>
|
#include <asm/arch/omap.h>
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_TI8148EVM
|
|
||||||
|
|
||||||
/* commands to include */
|
/* commands to include */
|
||||||
|
|
||||||
#define CONFIG_EXTRA_ENV_SETTINGS \
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
||||||
|
|
|
@ -12,8 +12,6 @@
|
||||||
#include <configs/ti_armv7_omap.h>
|
#include <configs/ti_armv7_omap.h>
|
||||||
#include <asm/arch/omap.h>
|
#include <asm/arch/omap.h>
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_TI8168EVM
|
|
||||||
|
|
||||||
#define CONFIG_EXTRA_ENV_SETTINGS \
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
||||||
DEFAULT_LINUX_BOOT_ENV \
|
DEFAULT_LINUX_BOOT_ENV \
|
||||||
"mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
|
"mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
|
||||||
|
|
|
@ -26,8 +26,6 @@
|
||||||
#define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE
|
#define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE
|
||||||
#define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
|
#define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_TRATS
|
|
||||||
|
|
||||||
#define CONFIG_BOOTCOMMAND "run autoboot"
|
#define CONFIG_BOOTCOMMAND "run autoboot"
|
||||||
|
|
||||||
#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \
|
#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \
|
||||||
|
|
|
@ -18,8 +18,6 @@
|
||||||
#define CONFIG_TEGRA_UARTA_GPU
|
#define CONFIG_TEGRA_UARTA_GPU
|
||||||
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
|
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_TRIMSLICE
|
|
||||||
|
|
||||||
/* SPI */
|
/* SPI */
|
||||||
|
|
||||||
/* Environment in SPI */
|
/* Environment in SPI */
|
||||||
|
|
|
@ -12,9 +12,6 @@
|
||||||
|
|
||||||
#include "imx6_spl.h"
|
#include "imx6_spl.h"
|
||||||
|
|
||||||
/* Provide the MACH_TYPE value that the vendor kernel requires. */
|
|
||||||
#define CONFIG_MACH_TYPE 4800
|
|
||||||
|
|
||||||
#define CONFIG_MXC_UART_BASE UART2_BASE
|
#define CONFIG_MXC_UART_BASE UART2_BASE
|
||||||
|
|
||||||
/* SATA Configs */
|
/* SATA Configs */
|
||||||
|
|
|
@ -20,8 +20,6 @@
|
||||||
#define CONFIG_SYS_AT91_MAIN_CLOCK 12000000 /* 12 MHz crystal */
|
#define CONFIG_SYS_AT91_MAIN_CLOCK 12000000 /* 12 MHz crystal */
|
||||||
#define CONFIG_SYS_AT91_SLOW_CLOCK 32768
|
#define CONFIG_SYS_AT91_SLOW_CLOCK 32768
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_USB_A9263
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Hardware drivers
|
* Hardware drivers
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -17,8 +17,6 @@
|
||||||
#define CONFIG_TEGRA_ENABLE_UARTD
|
#define CONFIG_TEGRA_ENABLE_UARTD
|
||||||
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE
|
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_VENTANA
|
|
||||||
|
|
||||||
/* Environment in eMMC, at the end of 2nd "boot sector" */
|
/* Environment in eMMC, at the end of 2nd "boot sector" */
|
||||||
|
|
||||||
#include "tegra-common-post.h"
|
#include "tegra-common-post.h"
|
||||||
|
|
|
@ -13,8 +13,6 @@
|
||||||
|
|
||||||
#define CONFIG_SYS_FSL_CLK
|
#define CONFIG_SYS_FSL_CLK
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE 4146
|
|
||||||
|
|
||||||
/* NAND support */
|
/* NAND support */
|
||||||
#define CONFIG_SYS_NAND_ONFI_DETECTION
|
#define CONFIG_SYS_NAND_ONFI_DETECTION
|
||||||
|
|
||||||
|
|
|
@ -12,8 +12,6 @@
|
||||||
|
|
||||||
#include "imx6_spl.h"
|
#include "imx6_spl.h"
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_WANDBOARD_IMX6
|
|
||||||
|
|
||||||
#define CONFIG_MXC_UART_BASE UART1_BASE
|
#define CONFIG_MXC_UART_BASE UART1_BASE
|
||||||
|
|
||||||
/* SATA Configs */
|
/* SATA Configs */
|
||||||
|
|
|
@ -13,12 +13,6 @@
|
||||||
#include <linux/sizes.h>
|
#include <linux/sizes.h>
|
||||||
#include <asm/arch/cpu.h>
|
#include <asm/arch/cpu.h>
|
||||||
|
|
||||||
/*
|
|
||||||
* Define work_92105 machine type by hand -- done only for compatibility
|
|
||||||
* with original board code
|
|
||||||
*/
|
|
||||||
#define CONFIG_MACH_TYPE 736
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Memory configurations
|
* Memory configurations
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
#define CONFIG_SYS_TIMER_COUNTER \
|
#define CONFIG_SYS_TIMER_COUNTER \
|
||||||
(&((struct gpt_regs *)IMX_GPT1_BASE)->counter)
|
(&((struct gpt_regs *)IMX_GPT1_BASE)->counter)
|
||||||
|
|
||||||
#define CONFIG_MACH_TYPE MACH_TYPE_ZMX25
|
|
||||||
/*
|
/*
|
||||||
* Environment settings
|
* Environment settings
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue