diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/am335x_evm.h | 28 | ||||
| -rw-r--r-- | include/configs/cardhu.h | 2 | ||||
| -rw-r--r-- | include/configs/cm_t35.h | 4 | ||||
| -rw-r--r-- | include/configs/dalmore.h | 23 | ||||
| -rw-r--r-- | include/configs/exynos5250-dt.h | 6 | ||||
| -rw-r--r-- | include/configs/igep00x0.h | 3 | ||||
| -rw-r--r-- | include/configs/pcm051.h | 3 | ||||
| -rw-r--r-- | include/configs/rpi_b.h | 79 | ||||
| -rw-r--r-- | include/configs/snow.h | 33 | ||||
| -rw-r--r-- | include/configs/tegra-common-post.h | 4 | ||||
| -rw-r--r-- | include/configs/tegra20-common.h | 1 | ||||
| -rw-r--r-- | include/configs/ti814x_evm.h | 221 | ||||
| -rw-r--r-- | include/configs/trimslice.h | 2 | ||||
| -rw-r--r-- | include/fdtdec.h | 3 | ||||
| -rw-r--r-- | include/power/max77686_pmic.h | 32 | ||||
| -rw-r--r-- | include/sound.h | 1 | ||||
| -rw-r--r-- | include/tmu.h | 46 | 
17 files changed, 475 insertions, 16 deletions
| diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h index 9eada95c0..b7c443c57 100644 --- a/include/configs/am335x_evm.h +++ b/include/configs/am335x_evm.h @@ -18,8 +18,7 @@  #define CONFIG_AM33XX -#include <asm/arch/cpu.h> -#include <asm/arch/hardware.h> +#include <asm/arch/omap.h>  #define CONFIG_DMA_COHERENT  #define CONFIG_DMA_COHERENT_SIZE	(1 << 20) @@ -56,13 +55,15 @@  	"fdtaddr=0x80F80000\0" \  	"fdt_high=0xffffffff\0" \  	"rdaddr=0x81000000\0" \ -	"bootfile=/boot/uImage\0" \ +	"bootdir=/boot\0" \ +	"bootfile=uImage\0" \  	"fdtfile=\0" \  	"console=ttyO0,115200n8\0" \  	"optargs=\0" \  	"mmcdev=0\0" \  	"mmcroot=/dev/mmcblk0p2 ro\0" \  	"mmcrootfstype=ext4 rootwait\0" \ +	"bootpart=0:2\0" \  	"nandroot=ubi0:rootfs rw ubi.mtd=7,2048\0" \  	"nandrootfstype=ubifs rootwait=1\0" \  	"nandsrcaddr=0x280000\0" \ @@ -96,19 +97,19 @@  		"nfsroot=${serverip}:${rootpath},${nfsopts} rw " \  		"ip=dhcp\0" \  	"bootenv=uEnv.txt\0" \ -	"loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \ +	"loadbootenv=load mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \  	"importbootenv=echo Importing environment from mmc ...; " \  		"env import -t $loadaddr $filesize\0" \  	"ramargs=setenv bootargs console=${console} " \  		"${optargs} " \  		"root=${ramroot} " \  		"rootfstype=${ramrootfstype}\0" \ -	"loadramdisk=fatload mmc ${mmcdev} ${rdaddr} ramdisk.gz\0" \ -	"loaduimagefat=fatload mmc ${mmcdev} ${loadaddr} ${bootfile}\0" \ -	"loaduimage=ext2load mmc ${mmcdev}:2 ${loadaddr} ${bootfile}\0" \ +	"loadramdisk=load mmc ${mmcdev} ${rdaddr} ramdisk.gz\0" \ +	"loaduimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \ +	"loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \  	"mmcboot=echo Booting from mmc ...; " \  		"run mmcargs; " \ -		"bootm ${loadaddr}\0" \ +		"bootm ${loadaddr} - ${fdtaddr}\0" \  	"nandboot=echo Booting from nand ...; " \  		"run nandargs; " \  		"nand read ${loadaddr} ${nandsrcaddr} ${nandimgsize}; " \ @@ -122,14 +123,17 @@  		"setenv autoload no; " \  		"dhcp; " \  		"tftp ${loadaddr} ${bootfile}; " \ +		"tftp ${fdtaddr} ${fdtfile}; " \  		"run netargs; " \ -		"bootm ${loadaddr}\0" \ +		"bootm ${loadaddr} - ${fdtaddr}\0" \  	"ramboot=echo Booting from ramdisk ...; " \  		"run ramargs; " \ -		"bootm ${loadaddr}\0" \ +		"bootm ${loadaddr} ${rdaddr} ${fdtaddr}\0" \  	"findfdt="\  		"if test $board_name = A335BONE; then " \  			"setenv fdtfile am335x-bone.dtb; fi; " \ +		"if test $board_name = A335BNLT; then " \ +			"setenv fdtfile am335x-boneblack.dtb; fi; " \  		"if test $board_name = A33515BB; then " \  			"setenv fdtfile am335x-evm.dtb; fi; " \  		"if test $board_name = A335X_SK; then " \ @@ -138,6 +142,7 @@  #endif  #define CONFIG_BOOTCOMMAND \ +	"run findfdt; " \  	"mmc dev ${mmcdev}; if mmc rescan; then " \  		"echo SD/MMC found on device ${mmcdev};" \  		"if run loadbootenv; then " \ @@ -149,6 +154,7 @@  			"run uenvcmd;" \  		"fi;" \  		"if run loaduimage; then " \ +			"run loadfdt;" \  			"run mmcboot;" \  		"fi;" \  	"else " \ @@ -192,6 +198,8 @@  #define CONFIG_DOS_PARTITION  #define CONFIG_CMD_FAT  #define CONFIG_CMD_EXT2 +#define CONFIG_CMD_EXT4 +#define CONFIG_CMD_FS_GENERIC  #define CONFIG_SPI  #define CONFIG_OMAP3_SPI diff --git a/include/configs/cardhu.h b/include/configs/cardhu.h index 55dc83da6..6a9917521 100644 --- a/include/configs/cardhu.h +++ b/include/configs/cardhu.h @@ -60,7 +60,7 @@  #define CONFIG_SYS_MMC_ENV_PART		2  /* SPI */ -#define CONFIG_TEGRA_SLINK +#define CONFIG_TEGRA20_SLINK  #define CONFIG_TEGRA_SLINK_CTRLS       6  #define CONFIG_SPI_FLASH  #define CONFIG_SPI_FLASH_WINBOND diff --git a/include/configs/cm_t35.h b/include/configs/cm_t35.h index 8d79ffd48..726714dd2 100644 --- a/include/configs/cm_t35.h +++ b/include/configs/cm_t35.h @@ -344,5 +344,9 @@  #define LCD_BPP		LCD_COLOR16  #define CONFIG_LCD +#define CONFIG_SPLASH_SCREEN +#define CONFIG_CMD_BMP +#define CONFIG_BMP_16BPP +#define CONFIG_SPLASH_SCREEN_PREPARE  #endif /* __CONFIG_H */ diff --git a/include/configs/dalmore.h b/include/configs/dalmore.h index b1a6e34eb..7b68f7ca9 100644 --- a/include/configs/dalmore.h +++ b/include/configs/dalmore.h @@ -50,10 +50,31 @@  #define CONFIG_SYS_I2C_SPEED		100000  #define CONFIG_CMD_I2C -#define CONFIG_ENV_IS_NOWHERE +/* SD/MMC */ +#define CONFIG_MMC +#define CONFIG_GENERIC_MMC +#define CONFIG_TEGRA_MMC +#define CONFIG_CMD_MMC + +/* Environment in eMMC, at the end of 2nd "boot sector" */ +#define CONFIG_ENV_IS_IN_MMC +#define CONFIG_SYS_MMC_ENV_DEV		0 +#define CONFIG_SYS_MMC_ENV_PART		2 +#define CONFIG_ENV_OFFSET		((4096 * 1024) - CONFIG_ENV_SIZE)  #define MACH_TYPE_DALMORE	4304	/* not yet in mach-types.h */ +/* SPI */ +#define CONFIG_TEGRA114_SPI +#define CONFIG_TEGRA114_SPI_CTRLS	6 +#define CONFIG_SPI_FLASH +#define CONFIG_SPI_FLASH_WINBOND +#define CONFIG_SF_DEFAULT_MODE         SPI_MODE_0 +#define CONFIG_SF_DEFAULT_SPEED        24000000 +#define CONFIG_CMD_SPI +#define CONFIG_CMD_SF +#define CONFIG_SPI_FLASH_SIZE          (4 << 20) +  #include "tegra-common-post.h"  #endif /* __CONFIG_H */ diff --git a/include/configs/exynos5250-dt.h b/include/configs/exynos5250-dt.h index 1c624d4a5..2b9d6ac06 100644 --- a/include/configs/exynos5250-dt.h +++ b/include/configs/exynos5250-dt.h @@ -118,6 +118,11 @@  #define CONFIG_BOOTDELAY		3  #define CONFIG_ZERO_BOOTDELAY_CHECK +/* Thermal Management Unit */ +#define CONFIG_EXYNOS_TMU +#define CONFIG_CMD_DTT +#define CONFIG_TMU_CMD_DTT +  /* USB */  #define CONFIG_CMD_USB  #define CONFIG_USB_EHCI @@ -297,6 +302,7 @@  #ifdef CONFIG_CMD_SOUND  #define CONFIG_SOUND  #define CONFIG_I2S +#define CONFIG_SOUND_MAX98095  #define CONFIG_SOUND_WM8994  #endif diff --git a/include/configs/igep00x0.h b/include/configs/igep00x0.h index 559e3759d..849fb1624 100644 --- a/include/configs/igep00x0.h +++ b/include/configs/igep00x0.h @@ -55,7 +55,8 @@  #define CONFIG_INITRD_TAG		1  #define CONFIG_REVISION_TAG		1 -#define CONFIG_OF_LIBFDT		1 +#define CONFIG_OF_LIBFDT +#define CONFIG_CMD_BOOTZ  /*   * NS16550 Configuration diff --git a/include/configs/pcm051.h b/include/configs/pcm051.h index 63ab12329..d0ea74e0b 100644 --- a/include/configs/pcm051.h +++ b/include/configs/pcm051.h @@ -21,8 +21,7 @@  #define CONFIG_AM33XX -#include <asm/arch/cpu.h> -#include <asm/arch/hardware.h> +#include <asm/arch/omap.h>  #define CONFIG_DMA_COHERENT  #define CONFIG_DMA_COHERENT_SIZE	(1 << 20) diff --git a/include/configs/rpi_b.h b/include/configs/rpi_b.h index cf62e45e8..3d55d36c6 100644 --- a/include/configs/rpi_b.h +++ b/include/configs/rpi_b.h @@ -23,6 +23,7 @@  #define CONFIG_ARM1176  #define CONFIG_BCM2835  #define CONFIG_ARCH_CPU_INIT +#define CONFIG_SYS_DCACHE_OFF  /*   * 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. @@ -50,6 +51,7 @@  #define CONFIG_SYS_MALLOC_LEN		SZ_4M  #define CONFIG_SYS_MEMTEST_START	0x00100000  #define CONFIG_SYS_MEMTEST_END		0x00200000 +#define CONFIG_LOADADDR			0x00200000  /* Flash */  #define CONFIG_SYS_NO_FLASH @@ -57,6 +59,24 @@  /* Devices */  /* GPIO */  #define CONFIG_BCM2835_GPIO +/* LCD */ +#define CONFIG_LCD +#define LCD_BPP				LCD_COLOR16 +/* + * Prevent allocation of RAM for FB; the real FB address is queried + * dynamically from the VideoCore co-processor, and comes from RAM + * not owned by the ARM CPU. + */ +#define CONFIG_FB_ADDR			0 +#define CONFIG_VIDEO_BCM2835 +#define CONFIG_SYS_WHITE_ON_BLACK + +/* SD/MMC configuration */ +#define CONFIG_GENERIC_MMC +#define CONFIG_MMC +#define CONFIG_SDHCI +#define CONFIG_MMC_SDHCI_IO_ACCESSORS +#define CONFIG_BCM2835_SDHCI  /* Console UART */  #define CONFIG_PL011_SERIAL @@ -73,7 +93,59 @@  /* Environment */  #define CONFIG_ENV_SIZE			SZ_16K  #define CONFIG_ENV_IS_NOWHERE +#define CONFIG_ENV_VARS_UBOOT_CONFIG  #define CONFIG_SYS_LOAD_ADDR		0x1000000 +#define CONFIG_CONSOLE_MUX +#define CONFIG_SYS_CONSOLE_IS_IN_ENV +/* + * Memory layout for where various images get loaded by boot scripts: + * + * scriptaddr can be pretty much anywhere that doesn't conflict with something + *   else. Put it low in memory to avoid conflicts. + * + * kernel_addr_r must be within the first 128M of RAM in order for the + *   kernel's CONFIG_AUTO_ZRELADDR option to work. Since the kernel will + *   decompress itself to 0x8000 after the start of RAM, kernel_addr_r + *   should not overlap that area, or the kernel will have to copy itself + *   somewhere else before decompression. Similarly, the address of any other + *   data passed to the kernel shouldn't overlap the start of RAM. Pushing + *   this up to 16M allows for a sizable kernel to be decompressed below the + *   compressed load address. + * + * fdt_addr_r simply shouldn't overlap anything else. Choosing 32M allows for + *   the compressed kernel to be up to 16M too. + * + * ramdisk_addr_r simply shouldn't overlap anything else. Choosing 33M allows + *   for the FDT/DTB to be up to 1M, which is hopefully plenty. + */ +#define CONFIG_EXTRA_ENV_SETTINGS \ +	"stdin=serial\0" \ +	"stderr=serial,lcd\0" \ +	"stdout=serial,lcd\0" \ +	"scriptaddr=0x00000000\0" \ +	"kernel_addr_r=0x01000000\0" \ +	"fdt_addr_r=0x02000000\0" \ +	"ramdisk_addr_r=0x02100000\0" \ +	"boot_targets=mmc0\0" \ +	\ +	"script_boot=" \ +		"if fatload ${devtype} ${devnum}:1 " \ +					"${scriptaddr} boot.scr.uimg; then " \ +			"source ${scriptaddr}; " \ +		"fi;\0" \ +	\ +	"mmc_boot=" \ +		"setenv devtype mmc; " \ +		"if mmc dev ${devnum}; then " \ +			"run script_boot; " \ +		"fi\0" \ +	\ +	"bootcmd_mmc0=setenv devnum 0; run mmc_boot\0" \ + +#define CONFIG_BOOTCOMMAND \ +	"for target in ${boot_targets}; do run bootcmd_${target}; done" + +#define CONFIG_BOOTDELAY		2  /* Shell */  #define CONFIG_SYS_HUSH_PARSER @@ -88,6 +160,13 @@  #include <config_cmd_default.h>  #define CONFIG_CMD_BOOTZ  #define CONFIG_CMD_GPIO +#define CONFIG_CMD_MMC +#define CONFIG_DOS_PARTITION +#define CONFIG_PARTITION_UUIDS +#define CONFIG_CMD_PART +#define CONFIG_CMD_FS_GENERIC +#define CONFIG_CMD_FAT +#define CONFIG_CMD_EXT  /* Some things don't make sense on this HW or yet */  #undef CONFIG_CMD_FPGA  #undef CONFIG_CMD_NET diff --git a/include/configs/snow.h b/include/configs/snow.h new file mode 100644 index 000000000..b8460fd1b --- /dev/null +++ b/include/configs/snow.h @@ -0,0 +1,33 @@ +/* + * Copyright (C) 2013 Samsung Electronics + * + * Configuration settings for the SAMSUNG EXYNOS5 Snow board. + * + * See file CREDITS for list of people who contributed to this + * project. + * + * 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 + */ + +#ifndef __CONFIG_SNOW_H +#define __CONFIG_SNOW_H + +#include <configs/exynos5250-dt.h> + +#undef CONFIG_DEFAULT_DEVICE_TREE +#define CONFIG_DEFAULT_DEVICE_TREE	exynos5250-snow + +#endif	/* __CONFIG_SNOW_H */ diff --git a/include/configs/tegra-common-post.h b/include/configs/tegra-common-post.h index f2a70b1a3..bf186995e 100644 --- a/include/configs/tegra-common-post.h +++ b/include/configs/tegra-common-post.h @@ -150,6 +150,10 @@  	MEM_LAYOUT_ENV_SETTINGS \  	BOOTCMDS_COMMON +#if defined(CONFIG_TEGRA20_SFLASH) || defined(CONFIG_TEGRA20_SLINK) || defined(CONFIG_TEGRA114_SPI) +#define CONFIG_FDT_SPI +#endif +  /* overrides for SPL build here */  #ifdef CONFIG_SPL_BUILD diff --git a/include/configs/tegra20-common.h b/include/configs/tegra20-common.h index e464e0617..395a65758 100644 --- a/include/configs/tegra20-common.h +++ b/include/configs/tegra20-common.h @@ -28,6 +28,7 @@  /*   * Errata configuration   */ +#define CONFIG_ARM_ERRATA_716044  #define CONFIG_ARM_ERRATA_742230  #define CONFIG_ARM_ERRATA_751472 diff --git a/include/configs/ti814x_evm.h b/include/configs/ti814x_evm.h new file mode 100644 index 000000000..16547e331 --- /dev/null +++ b/include/configs/ti814x_evm.h @@ -0,0 +1,221 @@ +/* + * ti814x_evm.h + * + * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/ + * + * 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 version 2. + * + * This program is distributed "as is" WITHOUT ANY WARRANTY of any + * kind, whether express or implied; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the + * GNU General Public License for more details. + */ + +#ifndef __CONFIG_TI814X_EVM_H +#define __CONFIG_TI814X_EVM_H + +#define CONFIG_TI81XX +#define CONFIG_TI814X +#define CONFIG_SYS_NO_FLASH + +#include <asm/arch/omap.h> + +#define CONFIG_DMA_COHERENT +#define CONFIG_DMA_COHERENT_SIZE	(1 << 20) + +#define CONFIG_ENV_SIZE			(128 << 10)	/* 128 KiB */ +#define CONFIG_SYS_MALLOC_LEN		(1024 << 10) +#define CONFIG_SYS_LONGHELP		/* undef to save memory */ +#define CONFIG_SYS_HUSH_PARSER		/* Use HUSH for command parsing */ +#define CONFIG_SYS_PROMPT		"U-Boot# " +#define CONFIG_SYS_NO_FLASH +#define CONFIG_MACH_TYPE		MACH_TYPE_TI8148EVM + +#define CONFIG_OF_LIBFDT +#define CONFIG_CMDLINE_TAG		/* enable passing of ATAGs  */ +#define CONFIG_SETUP_MEMORY_TAGS +#define CONFIG_INITRD_TAG		/* for ramdisk support */ + +/* commands to include */ +# include <config_cmd_default.h> + +#define CONFIG_CMD_ASKENV +#define CONFIG_VERSION_VARIABLE + +#define CONFIG_BOOTDELAY		1	/* negative for no autoboot */ +#define CONFIG_ENV_VARS_UBOOT_CONFIG +#define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG +#define CONFIG_EXTRA_ENV_SETTINGS \ +	"loadaddr=0x80200000\0" \ +	"fdtaddr=0x80F80000\0" \ +	"rdaddr=0x81000000\0" \ +	"bootfile=/boot/uImage\0" \ +	"fdtfile=\0" \ +	"console=ttyO0,115200n8\0" \ +	"optargs=\0" \ +	"mmcdev=0\0" \ +	"mmcroot=/dev/mmcblk0p2 ro\0" \ +	"mmcrootfstype=ext4 rootwait\0" \ +	"ramroot=/dev/ram0 rw ramdisk_size=65536 initrd=${rdaddr},64M\0" \ +	"ramrootfstype=ext2\0" \ +	"mmcargs=setenv bootargs console=${console} " \ +		"${optargs} " \ +		"root=${mmcroot} " \ +		"rootfstype=${mmcrootfstype}\0" \ +	"bootenv=uEnv.txt\0" \ +	"loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \ +	"importbootenv=echo Importing environment from mmc ...; " \ +		"env import -t $loadaddr $filesize\0" \ +	"ramargs=setenv bootargs console=${console} " \ +		"${optargs} " \ +		"root=${ramroot} " \ +		"rootfstype=${ramrootfstype}\0" \ +	"loadramdisk=fatload mmc ${mmcdev} ${rdaddr} ramdisk.gz\0" \ +	"loaduimagefat=fatload mmc ${mmcdev} ${loadaddr} ${bootfile}\0" \ +	"loaduimage=ext2load mmc ${mmcdev}:2 ${loadaddr} ${bootfile}\0" \ +	"mmcboot=echo Booting from mmc ...; " \ +		"run mmcargs; " \ +		"bootm ${loadaddr}\0" \ +	"ramboot=echo Booting from ramdisk ...; " \ +		"run ramargs; " \ +		"bootm ${loadaddr}\0" \ +	"fdtfile=ti814x-evm.dtb\0" \ + +#define CONFIG_BOOTCOMMAND \ +	"mmc dev ${mmcdev}; if mmc rescan; then " \ +		"echo SD/MMC found on device ${mmcdev};" \ +		"if run loadbootenv; then " \ +			"echo Loaded environment from ${bootenv};" \ +			"run importbootenv;" \ +		"fi;" \ +		"if test -n $uenvcmd; then " \ +			"echo Running uenvcmd ...;" \ +			"run uenvcmd;" \ +		"fi;" \ +		"if run loaduimage; then " \ +			"run mmcboot;" \ +		"fi;" \ +	"fi;" \ + +/* Clock Defines */ +#define V_OSCK			24000000	/* Clock output from T2 */ +#define V_SCLK			(V_OSCK >> 1) + +#define CONFIG_CMD_ECHO + +/* max number of command args */ +#define CONFIG_SYS_MAXARGS		16 + +/* Console I/O Buffer Size */ +#define CONFIG_SYS_CBSIZE		512 + +/* Print Buffer Size */ +#define CONFIG_SYS_PBSIZE		(CONFIG_SYS_CBSIZE \ +					+ sizeof(CONFIG_SYS_PROMPT) + 16) + +/* Boot Argument Buffer Size */ +#define CONFIG_SYS_BARGSIZE		CONFIG_SYS_CBSIZE + +#define CONFIG_SYS_MEMTEST_START	PHYS_DRAM_1 +#define CONFIG_SYS_MEMTEST_END		(CONFIG_SYS_MEMTEST_START \ +					+ PHYS_DRAM_1_SIZE - (8 << 12)) + +#define CONFIG_SYS_LOAD_ADDR		0x81000000	/* Default */ +#define CONFIG_SYS_HZ			1000		/* 1ms clock */ + +#define CONFIG_OMAP_GPIO +#define CONFIG_MMC +#define CONFIG_GENERIC_MMC +#define CONFIG_OMAP_HSMMC +#define CONFIG_CMD_MMC +#define CONFIG_DOS_PARTITION +#define CONFIG_CMD_FAT +#define CONFIG_CMD_EXT2 + +/** + * Physical Memory Map + */ +#define CONFIG_NR_DRAM_BANKS		1		/* 1 banks of DRAM */ +#define PHYS_DRAM_1			0x80000000	/* DRAM Bank #1 */ +#define PHYS_DRAM_1_SIZE		0x20000000	/* 512MB */ +#define CONFIG_MAX_RAM_BANK_SIZE	(1024 << 20)	/* 1024MB */ + +#define CONFIG_SYS_SDRAM_BASE		PHYS_DRAM_1 +#define CONFIG_SYS_INIT_SP_ADDR		(NON_SECURE_SRAM_END - \ +					 GENERATED_GBL_DATA_SIZE) + +/** + * Platform/Board specific defs + */ +#define CONFIG_SYS_TIMERBASE		0x4802E000 +#define CONFIG_SYS_PTV			2	/* Divisor: 2^(PTV+1) => 8 */ +#define CONFIG_SYS_HZ			1000 + +/* NS16550 Configuration */ +#define CONFIG_SYS_NS16550 +#define CONFIG_SYS_NS16550_SERIAL +#define CONFIG_SYS_NS16550_REG_SIZE	(-4) +#define CONFIG_SYS_NS16550_CLK		(48000000) +#define CONFIG_SYS_NS16550_COM1		0x48020000	/* Base EVM has UART0 */ + +#define CONFIG_BAUDRATE			115200 + +#define CONFIG_ENV_OVERWRITE +#define CONFIG_CONS_INDEX		1 +#define CONFIG_SYS_CONSOLE_INFO_QUIET + +#define CONFIG_ENV_IS_NOWHERE + +/* Defines for SPL */ +#define CONFIG_SPL +#define CONFIG_SPL_FRAMEWORK +#define CONFIG_SPL_TEXT_BASE		0x40300000 +#define CONFIG_SPL_MAX_SIZE		((128 - 18) * 1024) +#define CONFIG_SPL_STACK		CONFIG_SYS_INIT_SP_ADDR + +#define CONFIG_SPL_BSS_START_ADDR	0x80000000 +#define CONFIG_SPL_BSS_MAX_SIZE		0x80000		/* 512 KB */ + +#define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x300 /* address 0x60000 */ +#define CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS      0x200 /* 256 KB */ +#define CONFIG_SYS_MMC_SD_FAT_BOOT_PARTITION    1 +#define CONFIG_SPL_FAT_LOAD_PAYLOAD_NAME        "u-boot.img" +#define CONFIG_SPL_MMC_SUPPORT +#define CONFIG_SPL_FAT_SUPPORT + +#define CONFIG_SPL_LIBCOMMON_SUPPORT +#define CONFIG_SPL_LIBDISK_SUPPORT +#define CONFIG_SPL_LIBGENERIC_SUPPORT +#define CONFIG_SPL_SERIAL_SUPPORT +#define CONFIG_SPL_GPIO_SUPPORT +#define CONFIG_SPL_YMODEM_SUPPORT +#define CONFIG_SYS_SPI_U_BOOT_OFFS	0x20000 +#define CONFIG_SYS_SPI_U_BOOT_SIZE	0x40000 +#define CONFIG_SPL_LDSCRIPT		"$(CPUDIR)/omap-common/u-boot-spl.lds" + +#define CONFIG_SPL_BOARD_INIT + +/* + * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM + * 64 bytes before this address should be set aside for u-boot.img's + * header. That is 0x800FFFC0--0x80800000 should not be used for any + * other needs. + */ +#define CONFIG_SYS_TEXT_BASE		0x80800000 +#define CONFIG_SYS_SPL_MALLOC_START	0x80208000 +#define CONFIG_SYS_SPL_MALLOC_SIZE	0x100000 + +/* + * Since SPL did pll and ddr initialization for us, + * we don't need to do it twice. + */ +#ifndef CONFIG_SPL_BUILD +#define CONFIG_SKIP_LOWLEVEL_INIT +#endif + +/* Unsupported features */ +#undef CONFIG_USE_IRQ + +#endif	/* ! __CONFIG_TI814X_EVM_H */ diff --git a/include/configs/trimslice.h b/include/configs/trimslice.h index 0644f7a5b..b92531477 100644 --- a/include/configs/trimslice.h +++ b/include/configs/trimslice.h @@ -46,7 +46,7 @@  #define CONFIG_BOARD_EARLY_INIT_F  /* SPI */ -#define CONFIG_TEGRA_SPI +#define CONFIG_TEGRA20_SFLASH  #define CONFIG_SPI_FLASH  #define CONFIG_SPI_FLASH_WINBOND  #define CONFIG_SF_DEFAULT_MODE		SPI_MODE_0 diff --git a/include/fdtdec.h b/include/fdtdec.h index 3b363be03..e7e3ff9e0 100644 --- a/include/fdtdec.h +++ b/include/fdtdec.h @@ -77,6 +77,7 @@ enum fdt_compat_id {  	COMPAT_NVIDIA_TEGRA20_SDMMC,	/* Tegra20 SDMMC controller */  	COMPAT_NVIDIA_TEGRA20_SFLASH,	/* Tegra 2 SPI flash controller */  	COMPAT_NVIDIA_TEGRA20_SLINK,	/* Tegra 2 SPI SLINK controller */ +	COMPAT_NVIDIA_TEGRA114_SPI,	/* Tegra 114 SPI controller */  	COMPAT_SMSC_LAN9215,		/* SMSC 10/100 Ethernet LAN9215 */  	COMPAT_SAMSUNG_EXYNOS5_SROMC,	/* Exynos5 SROMC */  	COMPAT_SAMSUNG_S3C2440_I2C,	/* Exynos I2C Controller */ @@ -85,8 +86,10 @@ enum fdt_compat_id {  	COMPAT_SAMSUNG_EXYNOS_SPI,	/* Exynos SPI */  	COMPAT_SAMSUNG_EXYNOS_EHCI,	/* Exynos EHCI controller */  	COMPAT_SAMSUNG_EXYNOS_USB_PHY,	/* Exynos phy controller for usb2.0 */ +	COMPAT_SAMSUNG_EXYNOS_TMU,	/* Exynos TMU */  	COMPAT_MAXIM_MAX77686_PMIC,	/* MAX77686 PMIC */  	COMPAT_GENERIC_SPI_FLASH,	/* Generic SPI Flash chip */ +	COMPAT_MAXIM_98095_CODEC,	/* MAX98095 Codec */  	COMPAT_COUNT,  }; diff --git a/include/power/max77686_pmic.h b/include/power/max77686_pmic.h index d949aced0..fdc7ca9e5 100644 --- a/include/power/max77686_pmic.h +++ b/include/power/max77686_pmic.h @@ -155,4 +155,36 @@ enum {  	EN_LDO = (0x3 << 6),  }; +/* Buck1 1 volt value */ +#define MAX77686_BUCK1OUT_1V	0x5 +#define MAX77686_BUCK1CTRL_EN	(3 << 0) +/* Buck2 1.3 volt value */ +#define MAX77686_BUCK2DVS1_1_3V	0x38 +#define MAX77686_BUCK2CTRL_ON	(1 << 4) +/* Buck3 1.0125 volt value */ +#define MAX77686_BUCK3DVS1_1_0125V	0x21 +#define MAX77686_BUCK3CTRL_ON	(1 << 4) +/* Buck4 1.2 volt value */ +#define MAX77686_BUCK4DVS1_1_2V	0x30 +#define MAX77686_BUCK4CTRL_ON	(1 << 4) +/* LDO2 1.5 volt value */ +#define MAX77686_LD02CTRL1_1_5V	0x1c +/* LDO3 1.8 volt value */ +#define MAX77686_LD03CTRL1_1_8V	0x14 +/* LDO5 1.8 volt value */ +#define MAX77686_LD05CTRL1_1_8V	0x14 +/* LDO10 1.8 volt value */ +#define MAX77686_LD10CTRL1_1_8V	0x14 +/* + * MAX77686_REG_PMIC_32KHZ set to 32KH CP + * output is activated + */ +#define MAX77686_32KHCP_EN	(1 << 1) +/* + * MAX77686_REG_PMIC_BBAT set to + * Back up batery charger on and + * limit voltage setting to 3.5v + */ +#define MAX77686_BBCHOSTEN	(1 << 0) +#define MAX77686_BBCVS_3_5V	(3 << 3)  #endif /* __MAX77686_PMIC_H_ */ diff --git a/include/sound.h b/include/sound.h index d73839d9f..94922f66d 100644 --- a/include/sound.h +++ b/include/sound.h @@ -28,6 +28,7 @@  enum en_sound_codec {  	CODEC_WM_8994,  	CODEC_WM_8995, +	CODEC_MAX_98095,  	CODEC_MAX  }; diff --git a/include/tmu.h b/include/tmu.h new file mode 100644 index 000000000..da07a2211 --- /dev/null +++ b/include/tmu.h @@ -0,0 +1,46 @@ +/* + * Copyright (c) 2012 Samsung Electronics Co., Ltd. + *      http://www.samsung.com + * Akshay Saraswat <akshay.s@samsung.com> + * + * Thermal Management Unit + * + * See file CREDITS for list of people who contributed to this + * project. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * 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 + */ + +#ifndef _TMU_H +#define _TMU_H + +enum tmu_status_t { +	TMU_STATUS_INIT = -1, +	TMU_STATUS_NORMAL = 0, +	TMU_STATUS_WARNING, +	TMU_STATUS_TRIPPED, +}; + +/* + * Monitors status of the TMU device and exynos temperature + * + * @param temp	pointer to the current temperature value + * @return	enum tmu_status_t value, code indicating event to execute + *		and -1 on error + */ +enum tmu_status_t tmu_monitor(int *temp); + +/* + * Initialize TMU device + * + * @param blob  FDT blob + * @return	int value, 0 for success + */ +int tmu_init(const void *blob); +#endif	/* _THERMAL_H_ */ |