2 * twl_core.c - driver for TWL4030/TWL5030/TWL60X0/TPS659x0 PM
3 * and audio CODEC devices
5 * Copyright (C) 2005-2006 Texas Instruments, Inc.
7 * Modifications to defer interrupt handling to a kernel thread:
8 * Copyright (C) 2006 MontaVista Software, Inc.
10 * Based on tlv320aic23.c:
11 * Copyright (c) by Kai Svahn <kai.svahn@nokia.com>
13 * Code cleanup and modifications to IRQ handler.
14 * by syed khasim <x0khasim@ti.com>
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #include <linux/init.h>
32 #include <linux/mutex.h>
33 #include <linux/module.h>
34 #include <linux/platform_device.h>
35 #include <linux/clk.h>
36 #include <linux/err.h>
37 #include <linux/device.h>
39 #include <linux/of_irq.h>
40 #include <linux/of_platform.h>
41 #include <linux/irq.h>
42 #include <linux/irqdomain.h>
44 #include <linux/regulator/machine.h>
46 #include <linux/i2c.h>
47 #include <linux/i2c/twl.h>
52 * The TWL4030 "Triton 2" is one of a family of a multi-function "Power
53 * Management and System Companion Device" chips originally designed for
54 * use in OMAP2 and OMAP 3 based systems. Its control interfaces use I2C,
55 * often at around 3 Mbit/sec, including for interrupt handling.
57 * This driver core provides genirq support for the interrupts emitted,
58 * by the various modules, and exports register access primitives.
60 * FIXME this driver currently requires use of the first interrupt line
61 * (and associated registers).
64 #define DRIVER_NAME "twl"
66 /* Triton Core internal information (BEGIN) */
68 /* Last - for index max*/
69 #define TWL4030_MODULE_LAST TWL4030_MODULE_SECURED_REG
71 #define TWL_NUM_SLAVES 4
73 #define SUB_CHIP_ID0 0
74 #define SUB_CHIP_ID1 1
75 #define SUB_CHIP_ID2 2
76 #define SUB_CHIP_ID3 3
77 #define SUB_CHIP_ID_INVAL 0xff
79 #define TWL_MODULE_LAST TWL4030_MODULE_LAST
81 /* Base Address defns for twl4030_map[] */
83 /* subchip/slave 0 - USB ID */
84 #define TWL4030_BASEADD_USB 0x0000
86 /* subchip/slave 1 - AUD ID */
87 #define TWL4030_BASEADD_AUDIO_VOICE 0x0000
88 #define TWL4030_BASEADD_GPIO 0x0098
89 #define TWL4030_BASEADD_INTBR 0x0085
90 #define TWL4030_BASEADD_PIH 0x0080
91 #define TWL4030_BASEADD_TEST 0x004C
93 /* subchip/slave 2 - AUX ID */
94 #define TWL4030_BASEADD_INTERRUPTS 0x00B9
95 #define TWL4030_BASEADD_LED 0x00EE
96 #define TWL4030_BASEADD_MADC 0x0000
97 #define TWL4030_BASEADD_MAIN_CHARGE 0x0074
98 #define TWL4030_BASEADD_PRECHARGE 0x00AA
99 #define TWL4030_BASEADD_PWM0 0x00F8
100 #define TWL4030_BASEADD_PWM1 0x00FB
101 #define TWL4030_BASEADD_PWMA 0x00EF
102 #define TWL4030_BASEADD_PWMB 0x00F1
103 #define TWL4030_BASEADD_KEYPAD 0x00D2
105 #define TWL5031_BASEADD_ACCESSORY 0x0074 /* Replaces Main Charge */
106 #define TWL5031_BASEADD_INTERRUPTS 0x00B9 /* Different than TWL4030's
109 /* subchip/slave 3 - POWER ID */
110 #define TWL4030_BASEADD_BACKUP 0x0014
111 #define TWL4030_BASEADD_INT 0x002E
112 #define TWL4030_BASEADD_PM_MASTER 0x0036
113 #define TWL4030_BASEADD_PM_RECEIVER 0x005B
114 #define TWL4030_BASEADD_RTC 0x001C
115 #define TWL4030_BASEADD_SECURED_REG 0x0000
117 /* Triton Core internal information (END) */
120 /* subchip/slave 0 0x48 - POWER */
121 #define TWL6030_BASEADD_RTC 0x0000
122 #define TWL6030_BASEADD_MEM 0x0017
123 #define TWL6030_BASEADD_PM_MASTER 0x001F
124 #define TWL6030_BASEADD_PM_SLAVE_MISC 0x0030 /* PM_RECEIVER */
125 #define TWL6030_BASEADD_PM_MISC 0x00E2
126 #define TWL6030_BASEADD_PM_PUPD 0x00F0
128 /* subchip/slave 1 0x49 - FEATURE */
129 #define TWL6030_BASEADD_USB 0x0000
130 #define TWL6030_BASEADD_GPADC_CTRL 0x002E
131 #define TWL6030_BASEADD_AUX 0x0090
132 #define TWL6030_BASEADD_PWM 0x00BA
133 #define TWL6030_BASEADD_GASGAUGE 0x00C0
134 #define TWL6030_BASEADD_PIH 0x00D0
135 #define TWL6030_BASEADD_CHARGER 0x00E0
136 #define TWL6025_BASEADD_CHARGER 0x00DA
138 /* subchip/slave 2 0x4A - DFT */
139 #define TWL6030_BASEADD_DIEID 0x00C0
141 /* subchip/slave 3 0x4B - AUDIO */
142 #define TWL6030_BASEADD_AUDIO 0x0000
143 #define TWL6030_BASEADD_RSV 0x0000
144 #define TWL6030_BASEADD_ZERO 0x0000
146 /* Few power values */
147 #define R_CFG_BOOT 0x05
149 /* some fields in R_CFG_BOOT */
150 #define HFCLK_FREQ_19p2_MHZ (1 << 0)
151 #define HFCLK_FREQ_26_MHZ (2 << 0)
152 #define HFCLK_FREQ_38p4_MHZ (3 << 0)
153 #define HIGH_PERF_SQ (1 << 3)
154 #define CK32K_LOWPWR_EN (1 << 7)
156 /*----------------------------------------------------------------------*/
158 /* is driver active, bound to a chip? */
161 /* TWL IDCODE Register value */
162 static u32 twl_idcode
;
164 static unsigned int twl_id
;
165 unsigned int twl_rev(void)
169 EXPORT_SYMBOL(twl_rev
);
171 /* Structure for each TWL4030/TWL6030 Slave */
173 struct i2c_client
*client
;
176 /* max numb of i2c_msg required is for read =2 */
177 struct i2c_msg xfer_msg
[2];
179 /* To lock access to xfer_msg */
180 struct mutex xfer_lock
;
183 static struct twl_client twl_modules
[TWL_NUM_SLAVES
];
185 /* mapping the module id to slave id and base address */
187 unsigned char sid
; /* Slave ID */
188 unsigned char base
; /* base address */
190 static struct twl_mapping
*twl_map
;
192 static struct twl_mapping twl4030_map
[TWL4030_MODULE_LAST
+ 1] = {
194 * NOTE: don't change this table without updating the
195 * <linux/i2c/twl.h> defines for TWL4030_MODULE_*
196 * so they continue to match the order in this table.
199 { 0, TWL4030_BASEADD_USB
},
201 { 1, TWL4030_BASEADD_AUDIO_VOICE
},
202 { 1, TWL4030_BASEADD_GPIO
},
203 { 1, TWL4030_BASEADD_INTBR
},
204 { 1, TWL4030_BASEADD_PIH
},
205 { 1, TWL4030_BASEADD_TEST
},
207 { 2, TWL4030_BASEADD_KEYPAD
},
208 { 2, TWL4030_BASEADD_MADC
},
209 { 2, TWL4030_BASEADD_INTERRUPTS
},
210 { 2, TWL4030_BASEADD_LED
},
211 { 2, TWL4030_BASEADD_MAIN_CHARGE
},
212 { 2, TWL4030_BASEADD_PRECHARGE
},
213 { 2, TWL4030_BASEADD_PWM0
},
214 { 2, TWL4030_BASEADD_PWM1
},
215 { 2, TWL4030_BASEADD_PWMA
},
216 { 2, TWL4030_BASEADD_PWMB
},
217 { 2, TWL5031_BASEADD_ACCESSORY
},
218 { 2, TWL5031_BASEADD_INTERRUPTS
},
220 { 3, TWL4030_BASEADD_BACKUP
},
221 { 3, TWL4030_BASEADD_INT
},
222 { 3, TWL4030_BASEADD_PM_MASTER
},
223 { 3, TWL4030_BASEADD_PM_RECEIVER
},
224 { 3, TWL4030_BASEADD_RTC
},
225 { 3, TWL4030_BASEADD_SECURED_REG
},
228 static struct twl_mapping twl6030_map
[] = {
230 * NOTE: don't change this table without updating the
231 * <linux/i2c/twl.h> defines for TWL4030_MODULE_*
232 * so they continue to match the order in this table.
234 { SUB_CHIP_ID1
, TWL6030_BASEADD_USB
},
235 { SUB_CHIP_ID_INVAL
, TWL6030_BASEADD_AUDIO
},
236 { SUB_CHIP_ID2
, TWL6030_BASEADD_DIEID
},
237 { SUB_CHIP_ID2
, TWL6030_BASEADD_RSV
},
238 { SUB_CHIP_ID1
, TWL6030_BASEADD_PIH
},
240 { SUB_CHIP_ID2
, TWL6030_BASEADD_RSV
},
241 { SUB_CHIP_ID2
, TWL6030_BASEADD_RSV
},
242 { SUB_CHIP_ID1
, TWL6030_BASEADD_GPADC_CTRL
},
243 { SUB_CHIP_ID2
, TWL6030_BASEADD_RSV
},
244 { SUB_CHIP_ID2
, TWL6030_BASEADD_RSV
},
246 { SUB_CHIP_ID1
, TWL6030_BASEADD_CHARGER
},
247 { SUB_CHIP_ID1
, TWL6030_BASEADD_GASGAUGE
},
248 { SUB_CHIP_ID1
, TWL6030_BASEADD_PWM
},
249 { SUB_CHIP_ID0
, TWL6030_BASEADD_ZERO
},
250 { SUB_CHIP_ID1
, TWL6030_BASEADD_ZERO
},
252 { SUB_CHIP_ID2
, TWL6030_BASEADD_ZERO
},
253 { SUB_CHIP_ID2
, TWL6030_BASEADD_ZERO
},
254 { SUB_CHIP_ID2
, TWL6030_BASEADD_RSV
},
255 { SUB_CHIP_ID2
, TWL6030_BASEADD_RSV
},
256 { SUB_CHIP_ID2
, TWL6030_BASEADD_RSV
},
257 { SUB_CHIP_ID0
, TWL6030_BASEADD_PM_MASTER
},
258 { SUB_CHIP_ID0
, TWL6030_BASEADD_PM_SLAVE_MISC
},
260 { SUB_CHIP_ID0
, TWL6030_BASEADD_RTC
},
261 { SUB_CHIP_ID0
, TWL6030_BASEADD_MEM
},
262 { SUB_CHIP_ID1
, TWL6025_BASEADD_CHARGER
},
265 /*----------------------------------------------------------------------*/
267 /* Exported Functions */
270 * twl_i2c_write - Writes a n bit register in TWL4030/TWL5030/TWL60X0
271 * @mod_no: module number
272 * @value: an array of num_bytes+1 containing data to write
273 * @reg: register address (just offset will do)
274 * @num_bytes: number of bytes to transfer
276 * IMPORTANT: for 'value' parameter: Allocate value num_bytes+1 and
277 * valid data starts at Offset 1.
279 * Returns the result of operation - 0 is success
281 int twl_i2c_write(u8 mod_no
, u8
*value
, u8 reg
, unsigned num_bytes
)
285 struct twl_client
*twl
;
288 if (unlikely(mod_no
> TWL_MODULE_LAST
)) {
289 pr_err("%s: invalid module number %d\n", DRIVER_NAME
, mod_no
);
292 if (unlikely(!inuse
)) {
293 pr_err("%s: not initialized\n", DRIVER_NAME
);
296 sid
= twl_map
[mod_no
].sid
;
297 if (unlikely(sid
== SUB_CHIP_ID_INVAL
)) {
298 pr_err("%s: module %d is not part of the pmic\n",
299 DRIVER_NAME
, mod_no
);
302 twl
= &twl_modules
[sid
];
304 mutex_lock(&twl
->xfer_lock
);
306 * [MSG1]: fill the register address data
307 * fill the data Tx buffer
309 msg
= &twl
->xfer_msg
[0];
310 msg
->addr
= twl
->address
;
311 msg
->len
= num_bytes
+ 1;
314 /* over write the first byte of buffer with the register address */
315 *value
= twl_map
[mod_no
].base
+ reg
;
316 ret
= i2c_transfer(twl
->client
->adapter
, twl
->xfer_msg
, 1);
317 mutex_unlock(&twl
->xfer_lock
);
319 /* i2c_transfer returns number of messages transferred */
321 pr_err("%s: i2c_write failed to transfer all messages\n",
331 EXPORT_SYMBOL(twl_i2c_write
);
334 * twl_i2c_read - Reads a n bit register in TWL4030/TWL5030/TWL60X0
335 * @mod_no: module number
336 * @value: an array of num_bytes containing data to be read
337 * @reg: register address (just offset will do)
338 * @num_bytes: number of bytes to transfer
340 * Returns result of operation - num_bytes is success else failure.
342 int twl_i2c_read(u8 mod_no
, u8
*value
, u8 reg
, unsigned num_bytes
)
347 struct twl_client
*twl
;
350 if (unlikely(mod_no
> TWL_MODULE_LAST
)) {
351 pr_err("%s: invalid module number %d\n", DRIVER_NAME
, mod_no
);
354 if (unlikely(!inuse
)) {
355 pr_err("%s: not initialized\n", DRIVER_NAME
);
358 sid
= twl_map
[mod_no
].sid
;
359 if (unlikely(sid
== SUB_CHIP_ID_INVAL
)) {
360 pr_err("%s: module %d is not part of the pmic\n",
361 DRIVER_NAME
, mod_no
);
364 twl
= &twl_modules
[sid
];
366 mutex_lock(&twl
->xfer_lock
);
367 /* [MSG1] fill the register address data */
368 msg
= &twl
->xfer_msg
[0];
369 msg
->addr
= twl
->address
;
371 msg
->flags
= 0; /* Read the register value */
372 val
= twl_map
[mod_no
].base
+ reg
;
374 /* [MSG2] fill the data rx buffer */
375 msg
= &twl
->xfer_msg
[1];
376 msg
->addr
= twl
->address
;
377 msg
->flags
= I2C_M_RD
; /* Read the register value */
378 msg
->len
= num_bytes
; /* only n bytes */
380 ret
= i2c_transfer(twl
->client
->adapter
, twl
->xfer_msg
, 2);
381 mutex_unlock(&twl
->xfer_lock
);
383 /* i2c_transfer returns number of messages transferred */
385 pr_err("%s: i2c_read failed to transfer all messages\n",
395 EXPORT_SYMBOL(twl_i2c_read
);
398 * twl_i2c_write_u8 - Writes a 8 bit register in TWL4030/TWL5030/TWL60X0
399 * @mod_no: module number
400 * @value: the value to be written 8 bit
401 * @reg: register address (just offset will do)
403 * Returns result of operation - 0 is success
405 int twl_i2c_write_u8(u8 mod_no
, u8 value
, u8 reg
)
408 /* 2 bytes offset 1 contains the data offset 0 is used by i2c_write */
409 u8 temp_buffer
[2] = { 0 };
410 /* offset 1 contains the data */
411 temp_buffer
[1] = value
;
412 return twl_i2c_write(mod_no
, temp_buffer
, reg
, 1);
414 EXPORT_SYMBOL(twl_i2c_write_u8
);
417 * twl_i2c_read_u8 - Reads a 8 bit register from TWL4030/TWL5030/TWL60X0
418 * @mod_no: module number
419 * @value: the value read 8 bit
420 * @reg: register address (just offset will do)
422 * Returns result of operation - 0 is success
424 int twl_i2c_read_u8(u8 mod_no
, u8
*value
, u8 reg
)
426 return twl_i2c_read(mod_no
, value
, reg
, 1);
428 EXPORT_SYMBOL(twl_i2c_read_u8
);
430 /*----------------------------------------------------------------------*/
433 * twl_read_idcode_register - API to read the IDCODE register.
435 * Unlocks the IDCODE register and read the 32 bit value.
437 static int twl_read_idcode_register(void)
441 err
= twl_i2c_write_u8(TWL4030_MODULE_INTBR
, TWL_EEPROM_R_UNLOCK
,
442 REG_UNLOCK_TEST_REG
);
444 pr_err("TWL4030 Unable to unlock IDCODE registers -%d\n", err
);
448 err
= twl_i2c_read(TWL4030_MODULE_INTBR
, (u8
*)(&twl_idcode
),
451 pr_err("TWL4030: unable to read IDCODE -%d\n", err
);
455 err
= twl_i2c_write_u8(TWL4030_MODULE_INTBR
, 0x0, REG_UNLOCK_TEST_REG
);
457 pr_err("TWL4030 Unable to relock IDCODE registers -%d\n", err
);
463 * twl_get_type - API to get TWL Si type.
465 * Api to get the TWL Si type from IDCODE value.
467 int twl_get_type(void)
469 return TWL_SIL_TYPE(twl_idcode
);
471 EXPORT_SYMBOL_GPL(twl_get_type
);
474 * twl_get_version - API to get TWL Si version.
476 * Api to get the TWL Si version from IDCODE value.
478 int twl_get_version(void)
480 return TWL_SIL_REV(twl_idcode
);
482 EXPORT_SYMBOL_GPL(twl_get_version
);
485 * twl_get_hfclk_rate - API to get TWL external HFCLK clock rate.
487 * Api to get the TWL HFCLK rate based on BOOT_CFG register.
489 int twl_get_hfclk_rate(void)
494 twl_i2c_read_u8(TWL_MODULE_PM_MASTER
, &ctrl
, R_CFG_BOOT
);
496 switch (ctrl
& 0x3) {
497 case HFCLK_FREQ_19p2_MHZ
:
500 case HFCLK_FREQ_26_MHZ
:
503 case HFCLK_FREQ_38p4_MHZ
:
507 pr_err("TWL4030: HFCLK is not configured\n");
514 EXPORT_SYMBOL_GPL(twl_get_hfclk_rate
);
516 static struct device
*
517 add_numbered_child(unsigned chip
, const char *name
, int num
,
518 void *pdata
, unsigned pdata_len
,
519 bool can_wakeup
, int irq0
, int irq1
)
521 struct platform_device
*pdev
;
522 struct twl_client
*twl
= &twl_modules
[chip
];
525 pdev
= platform_device_alloc(name
, num
);
527 dev_dbg(&twl
->client
->dev
, "can't alloc dev\n");
532 pdev
->dev
.parent
= &twl
->client
->dev
;
535 status
= platform_device_add_data(pdev
, pdata
, pdata_len
);
537 dev_dbg(&pdev
->dev
, "can't add platform_data\n");
543 struct resource r
[2] = {
544 { .start
= irq0
, .flags
= IORESOURCE_IRQ
, },
545 { .start
= irq1
, .flags
= IORESOURCE_IRQ
, },
548 status
= platform_device_add_resources(pdev
, r
, irq1
? 2 : 1);
550 dev_dbg(&pdev
->dev
, "can't add irqs\n");
555 status
= platform_device_add(pdev
);
557 device_init_wakeup(&pdev
->dev
, can_wakeup
);
561 platform_device_put(pdev
);
562 dev_err(&twl
->client
->dev
, "can't add %s dev\n", name
);
563 return ERR_PTR(status
);
568 static inline struct device
*add_child(unsigned chip
, const char *name
,
569 void *pdata
, unsigned pdata_len
,
570 bool can_wakeup
, int irq0
, int irq1
)
572 return add_numbered_child(chip
, name
, -1, pdata
, pdata_len
,
573 can_wakeup
, irq0
, irq1
);
576 static struct device
*
577 add_regulator_linked(int num
, struct regulator_init_data
*pdata
,
578 struct regulator_consumer_supply
*consumers
,
579 unsigned num_consumers
, unsigned long features
)
581 unsigned sub_chip_id
;
582 struct twl_regulator_driver_data drv_data
;
584 /* regulator framework demands init_data ... */
589 pdata
->consumer_supplies
= consumers
;
590 pdata
->num_consumer_supplies
= num_consumers
;
593 if (pdata
->driver_data
) {
594 /* If we have existing drv_data, just add the flags */
595 struct twl_regulator_driver_data
*tmp
;
596 tmp
= pdata
->driver_data
;
597 tmp
->features
|= features
;
599 /* add new driver data struct, used only during init */
600 drv_data
.features
= features
;
601 drv_data
.set_voltage
= NULL
;
602 drv_data
.get_voltage
= NULL
;
603 drv_data
.data
= NULL
;
604 pdata
->driver_data
= &drv_data
;
607 /* NOTE: we currently ignore regulator IRQs, e.g. for short circuits */
608 sub_chip_id
= twl_map
[TWL_MODULE_PM_MASTER
].sid
;
609 return add_numbered_child(sub_chip_id
, "twl_reg", num
,
610 pdata
, sizeof(*pdata
), false, 0, 0);
613 static struct device
*
614 add_regulator(int num
, struct regulator_init_data
*pdata
,
615 unsigned long features
)
617 return add_regulator_linked(num
, pdata
, NULL
, 0, features
);
621 * NOTE: We know the first 8 IRQs after pdata->base_irq are
622 * for the PIH, and the next are for the PWR_INT SIH, since
623 * that's how twl_init_irq() sets things up.
627 add_children(struct twl4030_platform_data
*pdata
, unsigned irq_base
,
628 unsigned long features
)
630 struct device
*child
;
631 unsigned sub_chip_id
;
633 if (IS_ENABLED(CONFIG_GPIO_TWL4030
) && pdata
->gpio
) {
634 child
= add_child(SUB_CHIP_ID1
, "twl4030_gpio",
635 pdata
->gpio
, sizeof(*pdata
->gpio
),
636 false, irq_base
+ GPIO_INTR_OFFSET
, 0);
638 return PTR_ERR(child
);
641 if (IS_ENABLED(CONFIG_KEYBOARD_TWL4030
) && pdata
->keypad
) {
642 child
= add_child(SUB_CHIP_ID2
, "twl4030_keypad",
643 pdata
->keypad
, sizeof(*pdata
->keypad
),
644 true, irq_base
+ KEYPAD_INTR_OFFSET
, 0);
646 return PTR_ERR(child
);
649 if (IS_ENABLED(CONFIG_TWL4030_MADC
) && pdata
->madc
) {
650 child
= add_child(2, "twl4030_madc",
651 pdata
->madc
, sizeof(*pdata
->madc
),
652 true, irq_base
+ MADC_INTR_OFFSET
, 0);
654 return PTR_ERR(child
);
657 if (IS_ENABLED(CONFIG_RTC_DRV_TWL4030
)) {
659 * REVISIT platform_data here currently might expose the
660 * "msecure" line ... but for now we just expect board
661 * setup to tell the chip "it's always ok to SET_TIME".
662 * Eventually, Linux might become more aware of such
663 * HW security concerns, and "least privilege".
665 sub_chip_id
= twl_map
[TWL_MODULE_RTC
].sid
;
666 child
= add_child(sub_chip_id
, "twl_rtc",
668 true, irq_base
+ RTC_INTR_OFFSET
, 0);
670 return PTR_ERR(child
);
673 if (IS_ENABLED(CONFIG_PWM_TWL6030
) && twl_class_is_6030()) {
674 child
= add_child(TWL6030_MODULE_ID1
, "twl6030-pwm", NULL
, 0,
677 return PTR_ERR(child
);
680 if (IS_ENABLED(CONFIG_TWL4030_USB
) && pdata
->usb
&&
681 twl_class_is_4030()) {
683 static struct regulator_consumer_supply usb1v5
= {
686 static struct regulator_consumer_supply usb1v8
= {
689 static struct regulator_consumer_supply usb3v1
[] = {
690 { .supply
= "usb3v1" },
691 { .supply
= "bci3v1" },
694 /* First add the regulators so that they can be used by transceiver */
695 if (IS_ENABLED(CONFIG_REGULATOR_TWL4030
)) {
696 /* this is a template that gets copied */
697 struct regulator_init_data usb_fixed
= {
698 .constraints
.valid_modes_mask
=
699 REGULATOR_MODE_NORMAL
700 | REGULATOR_MODE_STANDBY
,
701 .constraints
.valid_ops_mask
=
702 REGULATOR_CHANGE_MODE
703 | REGULATOR_CHANGE_STATUS
,
706 child
= add_regulator_linked(TWL4030_REG_VUSB1V5
,
707 &usb_fixed
, &usb1v5
, 1,
710 return PTR_ERR(child
);
712 child
= add_regulator_linked(TWL4030_REG_VUSB1V8
,
713 &usb_fixed
, &usb1v8
, 1,
716 return PTR_ERR(child
);
718 child
= add_regulator_linked(TWL4030_REG_VUSB3V1
,
719 &usb_fixed
, usb3v1
, 2,
722 return PTR_ERR(child
);
726 child
= add_child(0, "twl4030_usb",
727 pdata
->usb
, sizeof(*pdata
->usb
),
729 /* irq0 = USB_PRES, irq1 = USB */
730 irq_base
+ USB_PRES_INTR_OFFSET
,
731 irq_base
+ USB_INTR_OFFSET
);
734 return PTR_ERR(child
);
736 /* we need to connect regulators to this transceiver */
737 if (IS_ENABLED(CONFIG_REGULATOR_TWL4030
) && child
) {
738 usb1v5
.dev_name
= dev_name(child
);
739 usb1v8
.dev_name
= dev_name(child
);
740 usb3v1
[0].dev_name
= dev_name(child
);
743 if (IS_ENABLED(CONFIG_TWL6030_USB
) && pdata
->usb
&&
744 twl_class_is_6030()) {
746 static struct regulator_consumer_supply usb3v3
;
749 if (IS_ENABLED(CONFIG_REGULATOR_TWL4030
)) {
750 /* this is a template that gets copied */
751 struct regulator_init_data usb_fixed
= {
752 .constraints
.valid_modes_mask
=
753 REGULATOR_MODE_NORMAL
754 | REGULATOR_MODE_STANDBY
,
755 .constraints
.valid_ops_mask
=
756 REGULATOR_CHANGE_MODE
757 | REGULATOR_CHANGE_STATUS
,
760 if (features
& TWL6025_SUBCLASS
) {
761 usb3v3
.supply
= "ldousb";
762 regulator
= TWL6025_REG_LDOUSB
;
764 usb3v3
.supply
= "vusb";
765 regulator
= TWL6030_REG_VUSB
;
767 child
= add_regulator_linked(regulator
, &usb_fixed
,
771 return PTR_ERR(child
);
774 pdata
->usb
->features
= features
;
776 child
= add_child(0, "twl6030_usb",
777 pdata
->usb
, sizeof(*pdata
->usb
),
779 /* irq1 = VBUS_PRES, irq0 = USB ID */
780 irq_base
+ USBOTG_INTR_OFFSET
,
781 irq_base
+ USB_PRES_INTR_OFFSET
);
784 return PTR_ERR(child
);
785 /* we need to connect regulators to this transceiver */
786 if (IS_ENABLED(CONFIG_REGULATOR_TWL4030
) && child
)
787 usb3v3
.dev_name
= dev_name(child
);
788 } else if (IS_ENABLED(CONFIG_REGULATOR_TWL4030
) &&
789 twl_class_is_6030()) {
790 if (features
& TWL6025_SUBCLASS
)
791 child
= add_regulator(TWL6025_REG_LDOUSB
,
792 pdata
->ldousb
, features
);
794 child
= add_regulator(TWL6030_REG_VUSB
,
795 pdata
->vusb
, features
);
798 return PTR_ERR(child
);
801 if (IS_ENABLED(CONFIG_TWL4030_WATCHDOG
) && twl_class_is_4030()) {
802 child
= add_child(0, "twl4030_wdt", NULL
, 0, false, 0, 0);
804 return PTR_ERR(child
);
807 if (IS_ENABLED(CONFIG_INPUT_TWL4030_PWRBUTTON
) && twl_class_is_4030()) {
808 child
= add_child(1, "twl4030_pwrbutton",
809 NULL
, 0, true, irq_base
+ 8 + 0, 0);
811 return PTR_ERR(child
);
814 if (IS_ENABLED(CONFIG_MFD_TWL4030_AUDIO
) && pdata
->audio
&&
815 twl_class_is_4030()) {
816 sub_chip_id
= twl_map
[TWL_MODULE_AUDIO_VOICE
].sid
;
817 child
= add_child(sub_chip_id
, "twl4030-audio",
818 pdata
->audio
, sizeof(*pdata
->audio
),
821 return PTR_ERR(child
);
824 /* twl4030 regulators */
825 if (IS_ENABLED(CONFIG_REGULATOR_TWL4030
) && twl_class_is_4030()) {
826 child
= add_regulator(TWL4030_REG_VPLL1
, pdata
->vpll1
,
829 return PTR_ERR(child
);
831 child
= add_regulator(TWL4030_REG_VIO
, pdata
->vio
,
834 return PTR_ERR(child
);
836 child
= add_regulator(TWL4030_REG_VDD1
, pdata
->vdd1
,
839 return PTR_ERR(child
);
841 child
= add_regulator(TWL4030_REG_VDD2
, pdata
->vdd2
,
844 return PTR_ERR(child
);
846 child
= add_regulator(TWL4030_REG_VMMC1
, pdata
->vmmc1
,
849 return PTR_ERR(child
);
851 child
= add_regulator(TWL4030_REG_VDAC
, pdata
->vdac
,
854 return PTR_ERR(child
);
856 child
= add_regulator((features
& TWL4030_VAUX2
)
857 ? TWL4030_REG_VAUX2_4030
859 pdata
->vaux2
, features
);
861 return PTR_ERR(child
);
863 child
= add_regulator(TWL4030_REG_VINTANA1
, pdata
->vintana1
,
866 return PTR_ERR(child
);
868 child
= add_regulator(TWL4030_REG_VINTANA2
, pdata
->vintana2
,
871 return PTR_ERR(child
);
873 child
= add_regulator(TWL4030_REG_VINTDIG
, pdata
->vintdig
,
876 return PTR_ERR(child
);
879 /* maybe add LDOs that are omitted on cost-reduced parts */
880 if (IS_ENABLED(CONFIG_REGULATOR_TWL4030
) && !(features
& TPS_SUBSET
)
881 && twl_class_is_4030()) {
882 child
= add_regulator(TWL4030_REG_VPLL2
, pdata
->vpll2
,
885 return PTR_ERR(child
);
887 child
= add_regulator(TWL4030_REG_VMMC2
, pdata
->vmmc2
,
890 return PTR_ERR(child
);
892 child
= add_regulator(TWL4030_REG_VSIM
, pdata
->vsim
,
895 return PTR_ERR(child
);
897 child
= add_regulator(TWL4030_REG_VAUX1
, pdata
->vaux1
,
900 return PTR_ERR(child
);
902 child
= add_regulator(TWL4030_REG_VAUX3
, pdata
->vaux3
,
905 return PTR_ERR(child
);
907 child
= add_regulator(TWL4030_REG_VAUX4
, pdata
->vaux4
,
910 return PTR_ERR(child
);
913 /* twl6030 regulators */
914 if (IS_ENABLED(CONFIG_REGULATOR_TWL4030
) && twl_class_is_6030() &&
915 !(features
& TWL6025_SUBCLASS
)) {
916 child
= add_regulator(TWL6030_REG_VDD1
, pdata
->vdd1
,
919 return PTR_ERR(child
);
921 child
= add_regulator(TWL6030_REG_VDD2
, pdata
->vdd2
,
924 return PTR_ERR(child
);
926 child
= add_regulator(TWL6030_REG_VDD3
, pdata
->vdd3
,
929 return PTR_ERR(child
);
931 child
= add_regulator(TWL6030_REG_V1V8
, pdata
->v1v8
,
934 return PTR_ERR(child
);
936 child
= add_regulator(TWL6030_REG_V2V1
, pdata
->v2v1
,
939 return PTR_ERR(child
);
941 child
= add_regulator(TWL6030_REG_VMMC
, pdata
->vmmc
,
944 return PTR_ERR(child
);
946 child
= add_regulator(TWL6030_REG_VPP
, pdata
->vpp
,
949 return PTR_ERR(child
);
951 child
= add_regulator(TWL6030_REG_VUSIM
, pdata
->vusim
,
954 return PTR_ERR(child
);
956 child
= add_regulator(TWL6030_REG_VCXIO
, pdata
->vcxio
,
959 return PTR_ERR(child
);
961 child
= add_regulator(TWL6030_REG_VDAC
, pdata
->vdac
,
964 return PTR_ERR(child
);
966 child
= add_regulator(TWL6030_REG_VAUX1_6030
, pdata
->vaux1
,
969 return PTR_ERR(child
);
971 child
= add_regulator(TWL6030_REG_VAUX2_6030
, pdata
->vaux2
,
974 return PTR_ERR(child
);
976 child
= add_regulator(TWL6030_REG_VAUX3_6030
, pdata
->vaux3
,
979 return PTR_ERR(child
);
981 child
= add_regulator(TWL6030_REG_CLK32KG
, pdata
->clk32kg
,
984 return PTR_ERR(child
);
987 /* 6030 and 6025 share this regulator */
988 if (IS_ENABLED(CONFIG_REGULATOR_TWL4030
) && twl_class_is_6030()) {
989 child
= add_regulator(TWL6030_REG_VANA
, pdata
->vana
,
992 return PTR_ERR(child
);
995 /* twl6025 regulators */
996 if (IS_ENABLED(CONFIG_REGULATOR_TWL4030
) && twl_class_is_6030() &&
997 (features
& TWL6025_SUBCLASS
)) {
998 child
= add_regulator(TWL6025_REG_LDO5
, pdata
->ldo5
,
1001 return PTR_ERR(child
);
1003 child
= add_regulator(TWL6025_REG_LDO1
, pdata
->ldo1
,
1006 return PTR_ERR(child
);
1008 child
= add_regulator(TWL6025_REG_LDO7
, pdata
->ldo7
,
1011 return PTR_ERR(child
);
1013 child
= add_regulator(TWL6025_REG_LDO6
, pdata
->ldo6
,
1016 return PTR_ERR(child
);
1018 child
= add_regulator(TWL6025_REG_LDOLN
, pdata
->ldoln
,
1021 return PTR_ERR(child
);
1023 child
= add_regulator(TWL6025_REG_LDO2
, pdata
->ldo2
,
1026 return PTR_ERR(child
);
1028 child
= add_regulator(TWL6025_REG_LDO4
, pdata
->ldo4
,
1031 return PTR_ERR(child
);
1033 child
= add_regulator(TWL6025_REG_LDO3
, pdata
->ldo3
,
1036 return PTR_ERR(child
);
1038 child
= add_regulator(TWL6025_REG_SMPS3
, pdata
->smps3
,
1041 return PTR_ERR(child
);
1043 child
= add_regulator(TWL6025_REG_SMPS4
, pdata
->smps4
,
1046 return PTR_ERR(child
);
1048 child
= add_regulator(TWL6025_REG_VIO
, pdata
->vio6025
,
1051 return PTR_ERR(child
);
1055 if (IS_ENABLED(CONFIG_CHARGER_TWL4030
) && pdata
->bci
&&
1056 !(features
& (TPS_SUBSET
| TWL5031
))) {
1057 child
= add_child(3, "twl4030_bci",
1058 pdata
->bci
, sizeof(*pdata
->bci
), false,
1059 /* irq0 = CHG_PRES, irq1 = BCI */
1060 irq_base
+ BCI_PRES_INTR_OFFSET
,
1061 irq_base
+ BCI_INTR_OFFSET
);
1063 return PTR_ERR(child
);
1069 /*----------------------------------------------------------------------*/
1072 * These three functions initialize the on-chip clock framework,
1073 * letting it generate the right frequencies for USB, MADC, and
1076 static inline int __init
protect_pm_master(void)
1080 e
= twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER
, 0,
1081 TWL4030_PM_MASTER_PROTECT_KEY
);
1085 static inline int __init
unprotect_pm_master(void)
1089 e
|= twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER
,
1090 TWL4030_PM_MASTER_KEY_CFG1
,
1091 TWL4030_PM_MASTER_PROTECT_KEY
);
1092 e
|= twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER
,
1093 TWL4030_PM_MASTER_KEY_CFG2
,
1094 TWL4030_PM_MASTER_PROTECT_KEY
);
1099 static void clocks_init(struct device
*dev
,
1100 struct twl4030_clock_init_data
*clock
)
1105 u8 ctrl
= HFCLK_FREQ_26_MHZ
;
1107 osc
= clk_get(dev
, "fck");
1109 printk(KERN_WARNING
"Skipping twl internal clock init and "
1110 "using bootloader value (unknown osc rate)\n");
1114 rate
= clk_get_rate(osc
);
1119 ctrl
= HFCLK_FREQ_19p2_MHZ
;
1122 ctrl
= HFCLK_FREQ_26_MHZ
;
1125 ctrl
= HFCLK_FREQ_38p4_MHZ
;
1129 ctrl
|= HIGH_PERF_SQ
;
1130 if (clock
&& clock
->ck32k_lowpwr_enable
)
1131 ctrl
|= CK32K_LOWPWR_EN
;
1133 e
|= unprotect_pm_master();
1134 /* effect->MADC+USB ck en */
1135 e
|= twl_i2c_write_u8(TWL_MODULE_PM_MASTER
, ctrl
, R_CFG_BOOT
);
1136 e
|= protect_pm_master();
1139 pr_err("%s: clock init err [%d]\n", DRIVER_NAME
, e
);
1142 /*----------------------------------------------------------------------*/
1145 static int twl_remove(struct i2c_client
*client
)
1147 unsigned i
, num_slaves
;
1150 if (twl_class_is_4030()) {
1151 status
= twl4030_exit_irq();
1152 num_slaves
= TWL_NUM_SLAVES
;
1154 status
= twl6030_exit_irq();
1155 num_slaves
= TWL_NUM_SLAVES
- 1;
1161 for (i
= 0; i
< num_slaves
; i
++) {
1162 struct twl_client
*twl
= &twl_modules
[i
];
1164 if (twl
->client
&& twl
->client
!= client
)
1165 i2c_unregister_device(twl
->client
);
1166 twl_modules
[i
].client
= NULL
;
1172 /* NOTE: This driver only handles a single twl4030/tps659x0 chip */
1173 static int __devinit
1174 twl_probe(struct i2c_client
*client
, const struct i2c_device_id
*id
)
1176 struct twl4030_platform_data
*pdata
= client
->dev
.platform_data
;
1177 struct device_node
*node
= client
->dev
.of_node
;
1178 struct platform_device
*pdev
;
1181 unsigned i
, num_slaves
;
1183 pdev
= platform_device_alloc(DRIVER_NAME
, -1);
1185 dev_err(&client
->dev
, "can't alloc pdev\n");
1189 status
= platform_device_add(pdev
);
1191 platform_device_put(pdev
);
1195 if (node
&& !pdata
) {
1197 * XXX: Temporary pdata until the information is correctly
1198 * retrieved by every TWL modules from DT.
1200 pdata
= devm_kzalloc(&client
->dev
,
1201 sizeof(struct twl4030_platform_data
),
1210 dev_dbg(&client
->dev
, "no platform data?\n");
1215 platform_set_drvdata(pdev
, pdata
);
1217 if (i2c_check_functionality(client
->adapter
, I2C_FUNC_I2C
) == 0) {
1218 dev_dbg(&client
->dev
, "can't talk I2C?\n");
1224 dev_dbg(&client
->dev
, "driver is already in use\n");
1229 if ((id
->driver_data
) & TWL6030_CLASS
) {
1230 twl_id
= TWL6030_CLASS_ID
;
1231 twl_map
= &twl6030_map
[0];
1232 num_slaves
= TWL_NUM_SLAVES
- 1;
1234 twl_id
= TWL4030_CLASS_ID
;
1235 twl_map
= &twl4030_map
[0];
1236 num_slaves
= TWL_NUM_SLAVES
;
1239 for (i
= 0; i
< num_slaves
; i
++) {
1240 struct twl_client
*twl
= &twl_modules
[i
];
1242 twl
->address
= client
->addr
+ i
;
1244 twl
->client
= client
;
1246 twl
->client
= i2c_new_dummy(client
->adapter
,
1249 dev_err(&client
->dev
,
1250 "can't attach client %d\n", i
);
1255 mutex_init(&twl
->xfer_lock
);
1260 /* setup clock framework */
1261 clocks_init(&pdev
->dev
, pdata
->clock
);
1263 /* read TWL IDCODE Register */
1264 if (twl_id
== TWL4030_CLASS_ID
) {
1265 status
= twl_read_idcode_register();
1266 WARN(status
< 0, "Error: reading twl_idcode register value\n");
1269 /* load power event scripts */
1270 if (IS_ENABLED(CONFIG_TWL4030_POWER
) && pdata
->power
)
1271 twl4030_power_init(pdata
->power
);
1273 /* Maybe init the T2 Interrupt subsystem */
1275 if (twl_class_is_4030()) {
1276 twl4030_init_chip_irq(id
->name
);
1277 irq_base
= twl4030_init_irq(&client
->dev
, client
->irq
);
1279 irq_base
= twl6030_init_irq(&client
->dev
, client
->irq
);
1289 * Disable TWL4030/TWL5030 I2C Pull-up on I2C1 and I2C4(SR) interface.
1290 * Program I2C_SCL_CTRL_PU(bit 0)=0, I2C_SDA_CTRL_PU (bit 2)=0,
1291 * SR_I2C_SCL_CTRL_PU(bit 4)=0 and SR_I2C_SDA_CTRL_PU(bit 6)=0.
1293 if (twl_class_is_4030()) {
1296 twl_i2c_read_u8(TWL4030_MODULE_INTBR
, &temp
, REG_GPPUPDCTR1
);
1297 temp
&= ~(SR_I2C_SDA_CTRL_PU
| SR_I2C_SCL_CTRL_PU
| \
1298 I2C_SDA_CTRL_PU
| I2C_SCL_CTRL_PU
);
1299 twl_i2c_write_u8(TWL4030_MODULE_INTBR
, temp
, REG_GPPUPDCTR1
);
1304 status
= of_platform_populate(node
, NULL
, NULL
, &client
->dev
);
1306 status
= add_children(pdata
, irq_base
, id
->driver_data
);
1313 platform_device_unregister(pdev
);
1318 static const struct i2c_device_id twl_ids
[] = {
1319 { "twl4030", TWL4030_VAUX2
}, /* "Triton 2" */
1320 { "twl5030", 0 }, /* T2 updated */
1321 { "twl5031", TWL5031
}, /* TWL5030 updated */
1322 { "tps65950", 0 }, /* catalog version of twl5030 */
1323 { "tps65930", TPS_SUBSET
}, /* fewer LDOs and DACs; no charger */
1324 { "tps65920", TPS_SUBSET
}, /* fewer LDOs; no codec or charger */
1325 { "tps65921", TPS_SUBSET
}, /* fewer LDOs; no codec, no LED
1326 and vibrator. Charger in USB module*/
1327 { "twl6030", TWL6030_CLASS
}, /* "Phoenix power chip" */
1328 { "twl6025", TWL6030_CLASS
| TWL6025_SUBCLASS
}, /* "Phoenix lite" */
1329 { /* end of list */ },
1331 MODULE_DEVICE_TABLE(i2c
, twl_ids
);
1333 /* One Client Driver , 4 Clients */
1334 static struct i2c_driver twl_driver
= {
1335 .driver
.name
= DRIVER_NAME
,
1336 .id_table
= twl_ids
,
1338 .remove
= twl_remove
,
1341 static int __init
twl_init(void)
1343 return i2c_add_driver(&twl_driver
);
1345 subsys_initcall(twl_init
);
1347 static void __exit
twl_exit(void)
1349 i2c_del_driver(&twl_driver
);
1351 module_exit(twl_exit
);
1353 MODULE_AUTHOR("Texas Instruments, Inc.");
1354 MODULE_DESCRIPTION("I2C Core interface for TWL");
1355 MODULE_LICENSE("GPL");