From 7b8eeb40604240c32ab8e1df4a85900b3378f895 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Sat, 17 Feb 2018 01:21:15 +0100 Subject: ARM: rmobile: Set FDT/initramfs limits on Porter Set those limits to inform U-Boot about FDT and initramfs placement. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- include/configs/porter.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include') diff --git a/include/configs/porter.h b/include/configs/porter.h index 758ed21c15..1816f2fd76 100644 --- a/include/configs/porter.h +++ b/include/configs/porter.h @@ -63,6 +63,10 @@ #define CONFIG_SYS_I2C_POWERIC_ADDR 0x58 /* da9063 */ +#define CONFIG_EXTRA_ENV_SETTINGS \ + "fdt_high=0xffffffff\0" \ + "initrd_high=0xffffffff\0" + /* SPL support */ #define CONFIG_SPL_TEXT_BASE 0xe6304000 #define CONFIG_SPL_STACK 0xe6340000 -- cgit From a6e50da0d5a42f84f39edad57cb24a85e8524e6d Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Sat, 17 Feb 2018 02:15:08 +0100 Subject: ARM: rmobile: Replace SH I2C with IIC on Porter Get rid of the SH I2C driver on Porter and enable the IIC driver instead . The old SH I2C is completely broken on Porter anyway and the DM/DT capable IIC driver allows access to the PMIC too. Use the DM/DT capable driver instead. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- include/configs/porter.h | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'include') diff --git a/include/configs/porter.h b/include/configs/porter.h index 1816f2fd76..eb28d1afcc 100644 --- a/include/configs/porter.h +++ b/include/configs/porter.h @@ -49,20 +49,6 @@ #define CONFIG_SYS_TMU_CLK_DIV 4 -/* i2c */ -#define CONFIG_SYS_I2C -#define CONFIG_SYS_I2C_SH -#define CONFIG_SYS_I2C_SLAVE 0x7F -#define CONFIG_SYS_I2C_SH_NUM_CONTROLLERS 3 -#define CONFIG_SYS_I2C_SH_SPEED0 400000 -#define CONFIG_SYS_I2C_SH_SPEED1 400000 -#define CONFIG_SYS_I2C_SH_SPEED2 400000 -#define CONFIG_SH_I2C_DATA_HIGH 4 -#define CONFIG_SH_I2C_DATA_LOW 5 -#define CONFIG_SH_I2C_CLOCK 10000000 - -#define CONFIG_SYS_I2C_POWERIC_ADDR 0x58 /* da9063 */ - #define CONFIG_EXTRA_ENV_SETTINGS \ "fdt_high=0xffffffff\0" \ "initrd_high=0xffffffff\0" -- cgit