diff options
| author | Ćukasz Majewski <l.majewski@samsung.com> | 2012-11-13 03:22:14 +0000 | 
|---|---|---|
| committer | Anatolij Gustschin <agust@denx.de> | 2012-11-14 11:21:12 +0100 | 
| commit | be3b51aa4a450f3e3fcd9c6e5074ef435812a02d (patch) | |
| tree | a933bfdc1d3ba1bd022aa528230c38e53ee1e6fd | |
| parent | 316a51beba19f1e0004be27329462ce6616a945c (diff) | |
| download | olio-uboot-2014.01-be3b51aa4a450f3e3fcd9c6e5074ef435812a02d.tar.xz olio-uboot-2014.01-be3b51aa4a450f3e3fcd9c6e5074ef435812a02d.zip | |
power:pmic: Rename CONFIG_PMIC* defines to CONFIG_POWER
Rename all CONFIG_PMIC* defines to CONFIG_POWER*
Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Stefano Babic <sbabic@denx.de>
| -rw-r--r-- | board/samsung/goni/goni.c | 2 | ||||
| -rw-r--r-- | board/samsung/universal_c210/universal.c | 2 | ||||
| -rw-r--r-- | drivers/power/Makefile | 8 | ||||
| -rw-r--r-- | drivers/power/pmic/Makefile | 4 | ||||
| -rw-r--r-- | drivers/power/power_fsl.c | 8 | ||||
| -rw-r--r-- | include/configs/imx31_litekit.h | 6 | ||||
| -rw-r--r-- | include/configs/mx31ads.h | 6 | ||||
| -rw-r--r-- | include/configs/mx31pdk.h | 6 | ||||
| -rw-r--r-- | include/configs/mx35pdk.h | 6 | ||||
| -rw-r--r-- | include/configs/mx51_efikamx.h | 6 | ||||
| -rw-r--r-- | include/configs/mx51evk.h | 6 | ||||
| -rw-r--r-- | include/configs/mx53evk.h | 6 | ||||
| -rw-r--r-- | include/configs/mx53loco.h | 6 | ||||
| -rw-r--r-- | include/configs/qong.h | 6 | ||||
| -rw-r--r-- | include/configs/s5p_goni.h | 6 | ||||
| -rw-r--r-- | include/configs/s5pc210_universal.h | 6 | ||||
| -rw-r--r-- | include/configs/trats.h | 6 | ||||
| -rw-r--r-- | include/configs/tt01.h | 6 | ||||
| -rw-r--r-- | include/configs/vision2.h | 6 | 
19 files changed, 54 insertions, 54 deletions
| diff --git a/board/samsung/goni/goni.c b/board/samsung/goni/goni.c index 71ed618c6..50e92104e 100644 --- a/board/samsung/goni/goni.c +++ b/board/samsung/goni/goni.c @@ -41,7 +41,7 @@ int board_init(void)  	gd->bd->bi_arch_number = MACH_TYPE_GONI;  	gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100; -#if defined(CONFIG_PMIC) +#if defined(CONFIG_POWER)  	pmic_init(I2C_5);  #endif diff --git a/board/samsung/universal_c210/universal.c b/board/samsung/universal_c210/universal.c index c4950ddc2..9849c6d11 100644 --- a/board/samsung/universal_c210/universal.c +++ b/board/samsung/universal_c210/universal.c @@ -58,7 +58,7 @@ int board_init(void)  	gd->bd->bi_arch_number = MACH_TYPE_UNIVERSAL_C210;  	gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100; -#if defined(CONFIG_PMIC) +#if defined(CONFIG_POWER)  	pmic_init(I2C_5);  #endif diff --git a/drivers/power/Makefile b/drivers/power/Makefile index 7733e01a4..2723724a3 100644 --- a/drivers/power/Makefile +++ b/drivers/power/Makefile @@ -31,11 +31,11 @@ COBJS-$(CONFIG_TWL4030_POWER)	+= twl4030.o  COBJS-$(CONFIG_TWL6030_POWER)	+= twl6030.o  COBJS-$(CONFIG_TWL6035_POWER)	+= twl6035.o -COBJS-$(CONFIG_PMIC) += power_core.o +COBJS-$(CONFIG_POWER) += power_core.o  COBJS-$(CONFIG_DIALOG_PMIC) += power_dialog.o -COBJS-$(CONFIG_PMIC_FSL) += power_fsl.o -COBJS-$(CONFIG_PMIC_I2C) += power_i2c.o -COBJS-$(CONFIG_PMIC_SPI) += power_spi.o +COBJS-$(CONFIG_POWER_FSL) += power_fsl.o +COBJS-$(CONFIG_POWER_I2C) += power_i2c.o +COBJS-$(CONFIG_POWER_SPI) += power_spi.o  COBJS	:= $(COBJS-y)  SRCS	:= $(COBJS:.o=.c) diff --git a/drivers/power/pmic/Makefile b/drivers/power/pmic/Makefile index 9b71e55a2..e19a9a819 100644 --- a/drivers/power/pmic/Makefile +++ b/drivers/power/pmic/Makefile @@ -25,8 +25,8 @@ include $(TOPDIR)/config.mk  LIB	:= $(obj)libpmic.o -COBJS-$(CONFIG_PMIC_MAX8998) += pmic_max8998.o -COBJS-$(CONFIG_PMIC_MAX8997) += pmic_max8997.o +COBJS-$(CONFIG_POWER_MAX8998) += pmic_max8998.o +COBJS-$(CONFIG_POWER_MAX8997) += pmic_max8997.o  COBJS-$(CONFIG_POWER_MUIC_MAX8997) += muic_max8997.o  COBJS	:= $(COBJS-y) diff --git a/drivers/power/power_fsl.c b/drivers/power/power_fsl.c index 0275fd989..651f88f85 100644 --- a/drivers/power/power_fsl.c +++ b/drivers/power/power_fsl.c @@ -27,7 +27,7 @@  #include <fsl_pmic.h>  #include <errno.h> -#if defined(CONFIG_PMIC_SPI) +#if defined(CONFIG_POWER_SPI)  static u32 pmic_spi_prepare_tx(u32 reg, u32 *val, u32 write)  {  	return (write << 31) | (reg << 25) | (*val & 0x00FFFFFF); @@ -47,7 +47,7 @@ int pmic_init(unsigned char bus)  	p->name = name;  	p->number_of_regs = PMIC_NUM_OF_REGS; -#if defined(CONFIG_PMIC_SPI) +#if defined(CONFIG_POWER_SPI)  	p->interface = PMIC_SPI;  	p->bus = CONFIG_FSL_PMIC_BUS;  	p->hw.spi.cs = CONFIG_FSL_PMIC_CS; @@ -56,13 +56,13 @@ int pmic_init(unsigned char bus)  	p->hw.spi.bitlen = CONFIG_FSL_PMIC_BITLEN;  	p->hw.spi.flags = SPI_XFER_BEGIN | SPI_XFER_END;  	p->hw.spi.prepare_tx = pmic_spi_prepare_tx; -#elif defined(CONFIG_PMIC_I2C) +#elif defined(CONFIG_POWER_I2C)  	p->interface = PMIC_I2C;  	p->hw.i2c.addr = CONFIG_SYS_FSL_PMIC_I2C_ADDR;  	p->hw.i2c.tx_num = 3;  	p->bus = bus;  #else -#error "You must select CONFIG_PMIC_SPI or CONFIG_PMIC_I2C" +#error "You must select CONFIG_POWER_SPI or CONFIG_PMIC_I2C"  #endif  	return 0; diff --git a/include/configs/imx31_litekit.h b/include/configs/imx31_litekit.h index 6ae764a2d..8fc394245 100644 --- a/include/configs/imx31_litekit.h +++ b/include/configs/imx31_litekit.h @@ -72,9 +72,9 @@  #define CONFIG_DEFAULT_SPI_MODE	(SPI_MODE_0 | SPI_CS_HIGH)  /* PMIC Controller */ -#define CONFIG_PMIC -#define CONFIG_PMIC_SPI -#define CONFIG_PMIC_FSL +#define CONFIG_POWER +#define CONFIG_POWER_SPI +#define CONFIG_POWER_FSL  #define CONFIG_FSL_PMIC_BUS	1  #define CONFIG_FSL_PMIC_CS	0  #define CONFIG_FSL_PMIC_CLK	1000000 diff --git a/include/configs/mx31ads.h b/include/configs/mx31ads.h index 9d9f4a782..9e4006b44 100644 --- a/include/configs/mx31ads.h +++ b/include/configs/mx31ads.h @@ -68,9 +68,9 @@  #define CONFIG_MXC_GPIO  /* PMIC Controller */ -#define CONFIG_PMIC -#define CONFIG_PMIC_SPI -#define CONFIG_PMIC_FSL +#define CONFIG_POWER +#define CONFIG_POWER_SPI +#define CONFIG_POWER_FSL  #define CONFIG_FSL_PMIC_BUS	1  #define CONFIG_FSL_PMIC_CS	0  #define CONFIG_FSL_PMIC_CLK	1000000 diff --git a/include/configs/mx31pdk.h b/include/configs/mx31pdk.h index 223b5b0bb..3b86c9ebf 100644 --- a/include/configs/mx31pdk.h +++ b/include/configs/mx31pdk.h @@ -69,9 +69,9 @@  #define CONFIG_DEFAULT_SPI_MODE	(SPI_MODE_0 | SPI_CS_HIGH)  /* PMIC Controller */ -#define CONFIG_PMIC -#define CONFIG_PMIC_SPI -#define CONFIG_PMIC_FSL +#define CONFIG_POWER +#define CONFIG_POWER_SPI +#define CONFIG_POWER_FSL  #define CONFIG_FSL_PMIC_BUS	1  #define CONFIG_FSL_PMIC_CS	2  #define CONFIG_FSL_PMIC_CLK	1000000 diff --git a/include/configs/mx35pdk.h b/include/configs/mx35pdk.h index 826c91249..342d53fee 100644 --- a/include/configs/mx35pdk.h +++ b/include/configs/mx35pdk.h @@ -65,9 +65,9 @@  /*   * PMIC Configs   */ -#define CONFIG_PMIC -#define CONFIG_PMIC_I2C -#define CONFIG_PMIC_FSL +#define CONFIG_POWER +#define CONFIG_POWER_I2C +#define CONFIG_POWER_FSL  #define CONFIG_SYS_FSL_PMIC_I2C_ADDR	0x08  #define CONFIG_RTC_MC13XXX diff --git a/include/configs/mx51_efikamx.h b/include/configs/mx51_efikamx.h index ffe771f2d..3c1c056fe 100644 --- a/include/configs/mx51_efikamx.h +++ b/include/configs/mx51_efikamx.h @@ -127,9 +127,9 @@  #endif  /* SPI PMIC */ -#define CONFIG_PMIC -#define CONFIG_PMIC_SPI -#define CONFIG_PMIC_FSL +#define CONFIG_POWER +#define CONFIG_POWER_SPI +#define CONFIG_POWER_FSL  #define CONFIG_FSL_PMIC_BUS		0  #define CONFIG_FSL_PMIC_CS		(0 | 120 << 8)  #define CONFIG_FSL_PMIC_CLK		25000000 diff --git a/include/configs/mx51evk.h b/include/configs/mx51evk.h index 225d359ec..f00cec280 100644 --- a/include/configs/mx51evk.h +++ b/include/configs/mx51evk.h @@ -69,9 +69,9 @@  #define CONFIG_MXC_SPI  /* PMIC Controller */ -#define CONFIG_PMIC -#define CONFIG_PMIC_SPI -#define CONFIG_PMIC_FSL +#define CONFIG_POWER +#define CONFIG_POWER_SPI +#define CONFIG_POWER_FSL  #define CONFIG_FSL_PMIC_BUS	0  #define CONFIG_FSL_PMIC_CS	0  #define CONFIG_FSL_PMIC_CLK	2500000 diff --git a/include/configs/mx53evk.h b/include/configs/mx53evk.h index d1f684cbc..1916b85e2 100644 --- a/include/configs/mx53evk.h +++ b/include/configs/mx53evk.h @@ -55,9 +55,9 @@  #define CONFIG_SYS_I2C_SPEED            100000  /* PMIC Configs */ -#define CONFIG_PMIC -#define CONFIG_PMIC_I2C -#define CONFIG_PMIC_FSL +#define CONFIG_POWER +#define CONFIG_POWER_I2C +#define CONFIG_POWER_FSL  #define CONFIG_SYS_FSL_PMIC_I2C_ADDR    8  #define CONFIG_RTC_MC13XXX diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index a1b27cef5..d16de3306 100644 --- a/include/configs/mx53loco.h +++ b/include/configs/mx53loco.h @@ -89,10 +89,10 @@  #define CONFIG_SYS_I2C_SPEED		100000  /* PMIC Controller */ -#define CONFIG_PMIC -#define CONFIG_PMIC_I2C +#define CONFIG_POWER +#define CONFIG_POWER_I2C  #define CONFIG_DIALOG_PMIC -#define CONFIG_PMIC_FSL +#define CONFIG_POWER_FSL  #define CONFIG_SYS_DIALOG_PMIC_I2C_ADDR	0x48  #define CONFIG_SYS_FSL_PMIC_I2C_ADDR	0x8 diff --git a/include/configs/qong.h b/include/configs/qong.h index e43a02110..d9bf2010b 100644 --- a/include/configs/qong.h +++ b/include/configs/qong.h @@ -58,9 +58,9 @@  #define CONFIG_DEFAULT_SPI_MODE	(SPI_MODE_0 | SPI_CS_HIGH)  #define CONFIG_RTC_MC13XXX -#define CONFIG_PMIC -#define CONFIG_PMIC_SPI -#define CONFIG_PMIC_FSL +#define CONFIG_POWER +#define CONFIG_POWER_SPI +#define CONFIG_POWER_FSL  #define CONFIG_FSL_PMIC_BUS	1  #define CONFIG_FSL_PMIC_CS	0  #define CONFIG_FSL_PMIC_CLK	100000 diff --git a/include/configs/s5p_goni.h b/include/configs/s5p_goni.h index 7e0b30293..56e83478f 100644 --- a/include/configs/s5p_goni.h +++ b/include/configs/s5p_goni.h @@ -215,9 +215,9 @@  #define CONFIG_SYS_CACHELINE_SIZE       64 -#define CONFIG_PMIC -#define CONFIG_PMIC_I2C -#define CONFIG_PMIC_MAX8998 +#define CONFIG_POWER +#define CONFIG_POWER_I2C +#define CONFIG_POWER_MAX8998  #include <asm/arch/gpio.h>  /* diff --git a/include/configs/s5pc210_universal.h b/include/configs/s5pc210_universal.h index 5fc613643..894f38bd7 100644 --- a/include/configs/s5pc210_universal.h +++ b/include/configs/s5pc210_universal.h @@ -253,9 +253,9 @@  #define CONFIG_I2C_MULTI_BUS  #define CONFIG_SYS_MAX_I2C_BUS	7 -#define CONFIG_PMIC -#define CONFIG_PMIC_I2C -#define CONFIG_PMIC_MAX8998 +#define CONFIG_POWER +#define CONFIG_POWER_I2C +#define CONFIG_POWER_MAX8998  #define CONFIG_USB_GADGET  #define CONFIG_USB_GADGET_S3C_UDC_OTG diff --git a/include/configs/trats.h b/include/configs/trats.h index 2fdc597c0..355029e8d 100644 --- a/include/configs/trats.h +++ b/include/configs/trats.h @@ -234,9 +234,9 @@  #define CONFIG_SOFT_I2C_GPIO_SDA get_multi_sda_pin()  #define I2C_INIT multi_i2c_init() -#define CONFIG_PMIC -#define CONFIG_PMIC_I2C -#define CONFIG_PMIC_MAX8997 +#define CONFIG_POWER +#define CONFIG_POWER_I2C +#define CONFIG_POWER_MAX8997  #define CONFIG_POWER_FG  #define CONFIG_POWER_FG_MAX17042 diff --git a/include/configs/tt01.h b/include/configs/tt01.h index f46efa55f..9f8f240f8 100644 --- a/include/configs/tt01.h +++ b/include/configs/tt01.h @@ -149,9 +149,9 @@  #define CONFIG_MXC_GPIO  /* MC13783 connected to CSPI3 and SS0 */ -#define CONFIG_PMIC -#define CONFIG_PMIC_SPI -#define CONFIG_PMIC_FSL +#define CONFIG_POWER +#define CONFIG_POWER_SPI +#define CONFIG_POWER_FSL  #define CONFIG_FSL_PMIC_BUS		2  #define CONFIG_FSL_PMIC_CS		0 diff --git a/include/configs/vision2.h b/include/configs/vision2.h index 848df88e7..a72010ff2 100644 --- a/include/configs/vision2.h +++ b/include/configs/vision2.h @@ -87,9 +87,9 @@  #define CONFIG_ENV_IS_IN_SPI_FLASH  /* PMIC Controller */ -#define CONFIG_PMIC -#define CONFIG_PMIC_SPI -#define CONFIG_PMIC_FSL +#define CONFIG_POWER +#define CONFIG_POWER_SPI +#define CONFIG_POWER_FSL  #define CONFIG_FSL_PMIC_BUS	0  #define CONFIG_FSL_PMIC_CS	0  #define CONFIG_FSL_PMIC_CLK	2500000 |