blob: eb9bd203e49700e2f75b6e9f836b2d3436a1b93a [file] [log] [blame]
David Brownella603a7f2008-10-15 12:15:39 +02001/*
Balaji T Kfc7b92f2009-12-13 21:23:33 +01002 * twl_core.c - driver for TWL4030/TWL5030/TWL60X0/TPS659x0 PM
3 * and audio CODEC devices
David Brownella603a7f2008-10-15 12:15:39 +02004 *
5 * Copyright (C) 2005-2006 Texas Instruments, Inc.
6 *
7 * Modifications to defer interrupt handling to a kernel thread:
8 * Copyright (C) 2006 MontaVista Software, Inc.
9 *
10 * Based on tlv320aic23.c:
11 * Copyright (c) by Kai Svahn <kai.svahn@nokia.com>
12 *
13 * Code cleanup and modifications to IRQ handler.
14 * by syed khasim <x0khasim@ti.com>
15 *
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.
20 *
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.
25 *
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
29 */
30
David Brownella603a7f2008-10-15 12:15:39 +020031#include <linux/init.h>
32#include <linux/mutex.h>
Paul Gortmaker4e36dd32011-07-03 15:13:27 -040033#include <linux/module.h>
David Brownella603a7f2008-10-15 12:15:39 +020034#include <linux/platform_device.h>
35#include <linux/clk.h>
David Brownella30d46c2008-10-20 23:46:28 +020036#include <linux/err.h>
Benoit Coussonaeb50322011-08-29 16:20:23 +020037#include <linux/device.h>
38#include <linux/of.h>
39#include <linux/of_irq.h>
40#include <linux/of_platform.h>
41#include <linux/irqdomain.h>
David Brownella603a7f2008-10-15 12:15:39 +020042
David Brownelldad759f2008-12-01 00:43:58 +010043#include <linux/regulator/machine.h>
44
David Brownella603a7f2008-10-15 12:15:39 +020045#include <linux/i2c.h>
Santosh Shilimkarb07682b2009-12-13 20:05:51 +010046#include <linux/i2c/twl.h>
David Brownella603a7f2008-10-15 12:15:39 +020047
Benoit Cousson1b8f3332012-02-29 19:28:14 +010048#include "twl-core.h"
49
David Brownella603a7f2008-10-15 12:15:39 +020050/*
51 * The TWL4030 "Triton 2" is one of a family of a multi-function "Power
52 * Management and System Companion Device" chips originally designed for
53 * use in OMAP2 and OMAP 3 based systems. Its control interfaces use I2C,
54 * often at around 3 Mbit/sec, including for interrupt handling.
55 *
56 * This driver core provides genirq support for the interrupts emitted,
57 * by the various modules, and exports register access primitives.
58 *
59 * FIXME this driver currently requires use of the first interrupt line
60 * (and associated registers).
61 */
62
Balaji T Kfc7b92f2009-12-13 21:23:33 +010063#define DRIVER_NAME "twl"
David Brownella603a7f2008-10-15 12:15:39 +020064
David Brownella603a7f2008-10-15 12:15:39 +020065#if defined(CONFIG_KEYBOARD_TWL4030) || defined(CONFIG_KEYBOARD_TWL4030_MODULE)
66#define twl_has_keypad() true
67#else
68#define twl_has_keypad() false
69#endif
70
71#if defined(CONFIG_GPIO_TWL4030) || defined(CONFIG_GPIO_TWL4030_MODULE)
72#define twl_has_gpio() true
73#else
74#define twl_has_gpio() false
75#endif
76
David Brownelldad759f2008-12-01 00:43:58 +010077#if defined(CONFIG_REGULATOR_TWL4030) \
78 || defined(CONFIG_REGULATOR_TWL4030_MODULE)
79#define twl_has_regulator() true
80#else
81#define twl_has_regulator() false
82#endif
83
David Brownella603a7f2008-10-15 12:15:39 +020084#if defined(CONFIG_TWL4030_MADC) || defined(CONFIG_TWL4030_MADC_MODULE)
85#define twl_has_madc() true
86#else
87#define twl_has_madc() false
88#endif
89
Amit Kucheriaebf0bd32009-08-31 18:32:18 +020090#ifdef CONFIG_TWL4030_POWER
91#define twl_has_power() true
92#else
93#define twl_has_power() false
94#endif
95
David Brownella603a7f2008-10-15 12:15:39 +020096#if defined(CONFIG_RTC_DRV_TWL4030) || defined(CONFIG_RTC_DRV_TWL4030_MODULE)
97#define twl_has_rtc() true
98#else
99#define twl_has_rtc() false
100#endif
101
Hema HKe70357e32010-12-10 18:09:52 +0530102#if defined(CONFIG_TWL4030_USB) || defined(CONFIG_TWL4030_USB_MODULE) ||\
103 defined(CONFIG_TWL6030_USB) || defined(CONFIG_TWL6030_USB_MODULE)
David Brownella603a7f2008-10-15 12:15:39 +0200104#define twl_has_usb() true
105#else
106#define twl_has_usb() false
107#endif
108
Timo Kokkonen80e45b12009-03-27 16:42:17 +0200109#if defined(CONFIG_TWL4030_WATCHDOG) || \
110 defined(CONFIG_TWL4030_WATCHDOG_MODULE)
111#define twl_has_watchdog() true
112#else
113#define twl_has_watchdog() false
114#endif
David Brownella603a7f2008-10-15 12:15:39 +0200115
Thomas Weberf09ee042011-09-05 11:26:33 +0200116#if defined(CONFIG_MFD_TWL4030_AUDIO) || defined(CONFIG_MFD_TWL4030_AUDIO_MODULE) ||\
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500117 defined(CONFIG_TWL6040_CORE) || defined(CONFIG_TWL6040_CORE_MODULE)
Peter Ujfalusi0b83dde2009-10-22 13:26:45 +0300118#define twl_has_codec() true
119#else
120#define twl_has_codec() false
121#endif
122
Grazvydas Ignotas11c39c42010-10-01 13:17:50 +0300123#if defined(CONFIG_CHARGER_TWL4030) || defined(CONFIG_CHARGER_TWL4030_MODULE)
124#define twl_has_bci() true
125#else
126#define twl_has_bci() false
127#endif
128
David Brownella603a7f2008-10-15 12:15:39 +0200129/* Triton Core internal information (BEGIN) */
130
131/* Last - for index max*/
132#define TWL4030_MODULE_LAST TWL4030_MODULE_SECURED_REG
133
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100134#define TWL_NUM_SLAVES 4
David Brownella603a7f2008-10-15 12:15:39 +0200135
Felipe Balbi9c3664d2009-08-03 18:16:38 +0200136#if defined(CONFIG_INPUT_TWL4030_PWRBUTTON) \
Eduardo Valentin14e5c822010-02-11 13:47:09 +0100137 || defined(CONFIG_INPUT_TWL4030_PWRBUTTON_MODULE)
Felipe Balbi9c3664d2009-08-03 18:16:38 +0200138#define twl_has_pwrbutton() true
139#else
140#define twl_has_pwrbutton() false
141#endif
David Brownella603a7f2008-10-15 12:15:39 +0200142
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100143#define SUB_CHIP_ID0 0
144#define SUB_CHIP_ID1 1
145#define SUB_CHIP_ID2 2
146#define SUB_CHIP_ID3 3
147
148#define TWL_MODULE_LAST TWL4030_MODULE_LAST
149
David Brownella603a7f2008-10-15 12:15:39 +0200150/* Base Address defns for twl4030_map[] */
151
152/* subchip/slave 0 - USB ID */
153#define TWL4030_BASEADD_USB 0x0000
154
155/* subchip/slave 1 - AUD ID */
156#define TWL4030_BASEADD_AUDIO_VOICE 0x0000
157#define TWL4030_BASEADD_GPIO 0x0098
158#define TWL4030_BASEADD_INTBR 0x0085
159#define TWL4030_BASEADD_PIH 0x0080
160#define TWL4030_BASEADD_TEST 0x004C
161
162/* subchip/slave 2 - AUX ID */
163#define TWL4030_BASEADD_INTERRUPTS 0x00B9
164#define TWL4030_BASEADD_LED 0x00EE
165#define TWL4030_BASEADD_MADC 0x0000
166#define TWL4030_BASEADD_MAIN_CHARGE 0x0074
167#define TWL4030_BASEADD_PRECHARGE 0x00AA
168#define TWL4030_BASEADD_PWM0 0x00F8
169#define TWL4030_BASEADD_PWM1 0x00FB
170#define TWL4030_BASEADD_PWMA 0x00EF
171#define TWL4030_BASEADD_PWMB 0x00F1
172#define TWL4030_BASEADD_KEYPAD 0x00D2
173
Ilkka Koskinen1920a612009-11-10 17:26:15 +0200174#define TWL5031_BASEADD_ACCESSORY 0x0074 /* Replaces Main Charge */
175#define TWL5031_BASEADD_INTERRUPTS 0x00B9 /* Different than TWL4030's
176 one */
177
David Brownella603a7f2008-10-15 12:15:39 +0200178/* subchip/slave 3 - POWER ID */
179#define TWL4030_BASEADD_BACKUP 0x0014
180#define TWL4030_BASEADD_INT 0x002E
181#define TWL4030_BASEADD_PM_MASTER 0x0036
182#define TWL4030_BASEADD_PM_RECEIVER 0x005B
183#define TWL4030_BASEADD_RTC 0x001C
184#define TWL4030_BASEADD_SECURED_REG 0x0000
185
186/* Triton Core internal information (END) */
187
188
Balaji T Ke8deb282009-12-14 00:25:31 +0100189/* subchip/slave 0 0x48 - POWER */
190#define TWL6030_BASEADD_RTC 0x0000
191#define TWL6030_BASEADD_MEM 0x0017
192#define TWL6030_BASEADD_PM_MASTER 0x001F
193#define TWL6030_BASEADD_PM_SLAVE_MISC 0x0030 /* PM_RECEIVER */
194#define TWL6030_BASEADD_PM_MISC 0x00E2
195#define TWL6030_BASEADD_PM_PUPD 0x00F0
196
197/* subchip/slave 1 0x49 - FEATURE */
198#define TWL6030_BASEADD_USB 0x0000
199#define TWL6030_BASEADD_GPADC_CTRL 0x002E
200#define TWL6030_BASEADD_AUX 0x0090
201#define TWL6030_BASEADD_PWM 0x00BA
202#define TWL6030_BASEADD_GASGAUGE 0x00C0
203#define TWL6030_BASEADD_PIH 0x00D0
204#define TWL6030_BASEADD_CHARGER 0x00E0
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100205#define TWL6025_BASEADD_CHARGER 0x00DA
Balaji T Ke8deb282009-12-14 00:25:31 +0100206
207/* subchip/slave 2 0x4A - DFT */
208#define TWL6030_BASEADD_DIEID 0x00C0
209
210/* subchip/slave 3 0x4B - AUDIO */
211#define TWL6030_BASEADD_AUDIO 0x0000
212#define TWL6030_BASEADD_RSV 0x0000
Balaji T Kfa0d9762010-02-19 12:39:38 +0100213#define TWL6030_BASEADD_ZERO 0x0000
Balaji T Ke8deb282009-12-14 00:25:31 +0100214
David Brownella603a7f2008-10-15 12:15:39 +0200215/* Few power values */
216#define R_CFG_BOOT 0x05
David Brownella603a7f2008-10-15 12:15:39 +0200217
218/* some fields in R_CFG_BOOT */
219#define HFCLK_FREQ_19p2_MHZ (1 << 0)
220#define HFCLK_FREQ_26_MHZ (2 << 0)
221#define HFCLK_FREQ_38p4_MHZ (3 << 0)
222#define HIGH_PERF_SQ (1 << 3)
Ilkka Koskinen38a68492009-10-22 14:14:09 +0300223#define CK32K_LOWPWR_EN (1 << 7)
David Brownella603a7f2008-10-15 12:15:39 +0200224
225
David Brownelldad759f2008-12-01 00:43:58 +0100226/* chip-specific feature flags, for i2c_device_id.driver_data */
227#define TWL4030_VAUX2 BIT(0) /* pre-5030 voltage ranges */
228#define TPS_SUBSET BIT(1) /* tps659[23]0 have fewer LDOs */
Ilkka Koskinen1920a612009-11-10 17:26:15 +0200229#define TWL5031 BIT(2) /* twl5031 has different registers */
Balaji T Ke8deb282009-12-14 00:25:31 +0100230#define TWL6030_CLASS BIT(3) /* TWL6030 class */
David Brownelldad759f2008-12-01 00:43:58 +0100231
David Brownella603a7f2008-10-15 12:15:39 +0200232/*----------------------------------------------------------------------*/
233
David Brownella603a7f2008-10-15 12:15:39 +0200234/* is driver active, bound to a chip? */
235static bool inuse;
236
Lesly A Mca972d12011-04-14 17:57:53 +0530237/* TWL IDCODE Register value */
238static u32 twl_idcode;
239
Balaji T Ke8deb282009-12-14 00:25:31 +0100240static unsigned int twl_id;
241unsigned int twl_rev(void)
242{
243 return twl_id;
244}
245EXPORT_SYMBOL(twl_rev);
246
247/* Structure for each TWL4030/TWL6030 Slave */
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100248struct twl_client {
David Brownella603a7f2008-10-15 12:15:39 +0200249 struct i2c_client *client;
250 u8 address;
251
252 /* max numb of i2c_msg required is for read =2 */
253 struct i2c_msg xfer_msg[2];
254
255 /* To lock access to xfer_msg */
256 struct mutex xfer_lock;
257};
258
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100259static struct twl_client twl_modules[TWL_NUM_SLAVES];
David Brownella603a7f2008-10-15 12:15:39 +0200260
Russell King62525472012-02-07 09:47:21 +0000261#ifdef CONFIG_IRQ_DOMAIN
Benoit Coussonaeb50322011-08-29 16:20:23 +0200262static struct irq_domain domain;
Russell King62525472012-02-07 09:47:21 +0000263#endif
David Brownella603a7f2008-10-15 12:15:39 +0200264
265/* mapping the module id to slave id and base address */
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100266struct twl_mapping {
David Brownella603a7f2008-10-15 12:15:39 +0200267 unsigned char sid; /* Slave ID */
268 unsigned char base; /* base address */
269};
G, Manjunath Kondaiah2cfcce12010-09-21 15:31:17 +0530270static struct twl_mapping *twl_map;
David Brownella603a7f2008-10-15 12:15:39 +0200271
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100272static struct twl_mapping twl4030_map[TWL4030_MODULE_LAST + 1] = {
David Brownella603a7f2008-10-15 12:15:39 +0200273 /*
274 * NOTE: don't change this table without updating the
Balaji T Ke8deb282009-12-14 00:25:31 +0100275 * <linux/i2c/twl.h> defines for TWL4030_MODULE_*
David Brownella603a7f2008-10-15 12:15:39 +0200276 * so they continue to match the order in this table.
277 */
278
279 { 0, TWL4030_BASEADD_USB },
280
281 { 1, TWL4030_BASEADD_AUDIO_VOICE },
282 { 1, TWL4030_BASEADD_GPIO },
283 { 1, TWL4030_BASEADD_INTBR },
284 { 1, TWL4030_BASEADD_PIH },
285 { 1, TWL4030_BASEADD_TEST },
286
287 { 2, TWL4030_BASEADD_KEYPAD },
288 { 2, TWL4030_BASEADD_MADC },
289 { 2, TWL4030_BASEADD_INTERRUPTS },
290 { 2, TWL4030_BASEADD_LED },
291 { 2, TWL4030_BASEADD_MAIN_CHARGE },
292 { 2, TWL4030_BASEADD_PRECHARGE },
293 { 2, TWL4030_BASEADD_PWM0 },
294 { 2, TWL4030_BASEADD_PWM1 },
295 { 2, TWL4030_BASEADD_PWMA },
296 { 2, TWL4030_BASEADD_PWMB },
Ilkka Koskinen1920a612009-11-10 17:26:15 +0200297 { 2, TWL5031_BASEADD_ACCESSORY },
298 { 2, TWL5031_BASEADD_INTERRUPTS },
David Brownella603a7f2008-10-15 12:15:39 +0200299
300 { 3, TWL4030_BASEADD_BACKUP },
301 { 3, TWL4030_BASEADD_INT },
302 { 3, TWL4030_BASEADD_PM_MASTER },
303 { 3, TWL4030_BASEADD_PM_RECEIVER },
304 { 3, TWL4030_BASEADD_RTC },
305 { 3, TWL4030_BASEADD_SECURED_REG },
306};
307
Balaji T Ke8deb282009-12-14 00:25:31 +0100308static struct twl_mapping twl6030_map[] = {
309 /*
310 * NOTE: don't change this table without updating the
311 * <linux/i2c/twl.h> defines for TWL4030_MODULE_*
312 * so they continue to match the order in this table.
313 */
314 { SUB_CHIP_ID1, TWL6030_BASEADD_USB },
315 { SUB_CHIP_ID3, TWL6030_BASEADD_AUDIO },
316 { SUB_CHIP_ID2, TWL6030_BASEADD_DIEID },
317 { SUB_CHIP_ID2, TWL6030_BASEADD_RSV },
318 { SUB_CHIP_ID1, TWL6030_BASEADD_PIH },
319
320 { SUB_CHIP_ID2, TWL6030_BASEADD_RSV },
321 { SUB_CHIP_ID2, TWL6030_BASEADD_RSV },
322 { SUB_CHIP_ID1, TWL6030_BASEADD_GPADC_CTRL },
323 { SUB_CHIP_ID2, TWL6030_BASEADD_RSV },
324 { SUB_CHIP_ID2, TWL6030_BASEADD_RSV },
325
326 { SUB_CHIP_ID1, TWL6030_BASEADD_CHARGER },
327 { SUB_CHIP_ID1, TWL6030_BASEADD_GASGAUGE },
328 { SUB_CHIP_ID1, TWL6030_BASEADD_PWM },
Balaji T Kfa0d9762010-02-19 12:39:38 +0100329 { SUB_CHIP_ID0, TWL6030_BASEADD_ZERO },
330 { SUB_CHIP_ID1, TWL6030_BASEADD_ZERO },
Balaji T Ke8deb282009-12-14 00:25:31 +0100331
Balaji T Kfa0d9762010-02-19 12:39:38 +0100332 { SUB_CHIP_ID2, TWL6030_BASEADD_ZERO },
333 { SUB_CHIP_ID2, TWL6030_BASEADD_ZERO },
Balaji T Ke8deb282009-12-14 00:25:31 +0100334 { SUB_CHIP_ID2, TWL6030_BASEADD_RSV },
335 { SUB_CHIP_ID2, TWL6030_BASEADD_RSV },
336 { SUB_CHIP_ID2, TWL6030_BASEADD_RSV },
337 { SUB_CHIP_ID0, TWL6030_BASEADD_PM_MASTER },
338 { SUB_CHIP_ID0, TWL6030_BASEADD_PM_SLAVE_MISC },
339
340 { SUB_CHIP_ID0, TWL6030_BASEADD_RTC },
341 { SUB_CHIP_ID0, TWL6030_BASEADD_MEM },
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100342 { SUB_CHIP_ID1, TWL6025_BASEADD_CHARGER },
Balaji T Ke8deb282009-12-14 00:25:31 +0100343};
344
David Brownella603a7f2008-10-15 12:15:39 +0200345/*----------------------------------------------------------------------*/
346
David Brownella603a7f2008-10-15 12:15:39 +0200347/* Exported Functions */
348
349/**
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100350 * twl_i2c_write - Writes a n bit register in TWL4030/TWL5030/TWL60X0
David Brownella603a7f2008-10-15 12:15:39 +0200351 * @mod_no: module number
352 * @value: an array of num_bytes+1 containing data to write
353 * @reg: register address (just offset will do)
354 * @num_bytes: number of bytes to transfer
355 *
356 * IMPORTANT: for 'value' parameter: Allocate value num_bytes+1 and
357 * valid data starts at Offset 1.
358 *
359 * Returns the result of operation - 0 is success
360 */
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100361int twl_i2c_write(u8 mod_no, u8 *value, u8 reg, unsigned num_bytes)
David Brownella603a7f2008-10-15 12:15:39 +0200362{
363 int ret;
364 int sid;
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100365 struct twl_client *twl;
David Brownella603a7f2008-10-15 12:15:39 +0200366 struct i2c_msg *msg;
367
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100368 if (unlikely(mod_no > TWL_MODULE_LAST)) {
David Brownella603a7f2008-10-15 12:15:39 +0200369 pr_err("%s: invalid module number %d\n", DRIVER_NAME, mod_no);
370 return -EPERM;
371 }
Ilya Yanok8653be12011-08-01 23:00:28 +0200372 if (unlikely(!inuse)) {
373 pr_err("%s: not initialized\n", DRIVER_NAME);
374 return -EPERM;
375 }
Balaji T Ke8deb282009-12-14 00:25:31 +0100376 sid = twl_map[mod_no].sid;
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100377 twl = &twl_modules[sid];
David Brownella603a7f2008-10-15 12:15:39 +0200378
David Brownella603a7f2008-10-15 12:15:39 +0200379 mutex_lock(&twl->xfer_lock);
380 /*
381 * [MSG1]: fill the register address data
382 * fill the data Tx buffer
383 */
384 msg = &twl->xfer_msg[0];
385 msg->addr = twl->address;
386 msg->len = num_bytes + 1;
387 msg->flags = 0;
388 msg->buf = value;
389 /* over write the first byte of buffer with the register address */
Balaji T Ke8deb282009-12-14 00:25:31 +0100390 *value = twl_map[mod_no].base + reg;
David Brownella603a7f2008-10-15 12:15:39 +0200391 ret = i2c_transfer(twl->client->adapter, twl->xfer_msg, 1);
392 mutex_unlock(&twl->xfer_lock);
393
Amit Kucheria147e0842009-12-11 13:21:45 +0100394 /* i2c_transfer returns number of messages transferred */
395 if (ret != 1) {
396 pr_err("%s: i2c_write failed to transfer all messages\n",
397 DRIVER_NAME);
398 if (ret < 0)
399 return ret;
400 else
401 return -EIO;
402 } else {
403 return 0;
404 }
David Brownella603a7f2008-10-15 12:15:39 +0200405}
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100406EXPORT_SYMBOL(twl_i2c_write);
David Brownella603a7f2008-10-15 12:15:39 +0200407
408/**
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100409 * twl_i2c_read - Reads a n bit register in TWL4030/TWL5030/TWL60X0
David Brownella603a7f2008-10-15 12:15:39 +0200410 * @mod_no: module number
411 * @value: an array of num_bytes containing data to be read
412 * @reg: register address (just offset will do)
413 * @num_bytes: number of bytes to transfer
414 *
415 * Returns result of operation - num_bytes is success else failure.
416 */
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100417int twl_i2c_read(u8 mod_no, u8 *value, u8 reg, unsigned num_bytes)
David Brownella603a7f2008-10-15 12:15:39 +0200418{
419 int ret;
420 u8 val;
421 int sid;
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100422 struct twl_client *twl;
David Brownella603a7f2008-10-15 12:15:39 +0200423 struct i2c_msg *msg;
424
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100425 if (unlikely(mod_no > TWL_MODULE_LAST)) {
David Brownella603a7f2008-10-15 12:15:39 +0200426 pr_err("%s: invalid module number %d\n", DRIVER_NAME, mod_no);
427 return -EPERM;
428 }
Ilya Yanok8653be12011-08-01 23:00:28 +0200429 if (unlikely(!inuse)) {
430 pr_err("%s: not initialized\n", DRIVER_NAME);
431 return -EPERM;
432 }
Balaji T Ke8deb282009-12-14 00:25:31 +0100433 sid = twl_map[mod_no].sid;
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100434 twl = &twl_modules[sid];
David Brownella603a7f2008-10-15 12:15:39 +0200435
David Brownella603a7f2008-10-15 12:15:39 +0200436 mutex_lock(&twl->xfer_lock);
437 /* [MSG1] fill the register address data */
438 msg = &twl->xfer_msg[0];
439 msg->addr = twl->address;
440 msg->len = 1;
441 msg->flags = 0; /* Read the register value */
Balaji T Ke8deb282009-12-14 00:25:31 +0100442 val = twl_map[mod_no].base + reg;
David Brownella603a7f2008-10-15 12:15:39 +0200443 msg->buf = &val;
444 /* [MSG2] fill the data rx buffer */
445 msg = &twl->xfer_msg[1];
446 msg->addr = twl->address;
447 msg->flags = I2C_M_RD; /* Read the register value */
448 msg->len = num_bytes; /* only n bytes */
449 msg->buf = value;
450 ret = i2c_transfer(twl->client->adapter, twl->xfer_msg, 2);
451 mutex_unlock(&twl->xfer_lock);
452
Amit Kucheria147e0842009-12-11 13:21:45 +0100453 /* i2c_transfer returns number of messages transferred */
454 if (ret != 2) {
455 pr_err("%s: i2c_read failed to transfer all messages\n",
456 DRIVER_NAME);
457 if (ret < 0)
458 return ret;
459 else
460 return -EIO;
461 } else {
462 return 0;
463 }
David Brownella603a7f2008-10-15 12:15:39 +0200464}
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100465EXPORT_SYMBOL(twl_i2c_read);
David Brownella603a7f2008-10-15 12:15:39 +0200466
467/**
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100468 * twl_i2c_write_u8 - Writes a 8 bit register in TWL4030/TWL5030/TWL60X0
David Brownella603a7f2008-10-15 12:15:39 +0200469 * @mod_no: module number
470 * @value: the value to be written 8 bit
471 * @reg: register address (just offset will do)
472 *
473 * Returns result of operation - 0 is success
474 */
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100475int twl_i2c_write_u8(u8 mod_no, u8 value, u8 reg)
David Brownella603a7f2008-10-15 12:15:39 +0200476{
477
478 /* 2 bytes offset 1 contains the data offset 0 is used by i2c_write */
479 u8 temp_buffer[2] = { 0 };
480 /* offset 1 contains the data */
481 temp_buffer[1] = value;
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100482 return twl_i2c_write(mod_no, temp_buffer, reg, 1);
David Brownella603a7f2008-10-15 12:15:39 +0200483}
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100484EXPORT_SYMBOL(twl_i2c_write_u8);
David Brownella603a7f2008-10-15 12:15:39 +0200485
486/**
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100487 * twl_i2c_read_u8 - Reads a 8 bit register from TWL4030/TWL5030/TWL60X0
David Brownella603a7f2008-10-15 12:15:39 +0200488 * @mod_no: module number
489 * @value: the value read 8 bit
490 * @reg: register address (just offset will do)
491 *
492 * Returns result of operation - 0 is success
493 */
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100494int twl_i2c_read_u8(u8 mod_no, u8 *value, u8 reg)
David Brownella603a7f2008-10-15 12:15:39 +0200495{
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100496 return twl_i2c_read(mod_no, value, reg, 1);
David Brownella603a7f2008-10-15 12:15:39 +0200497}
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100498EXPORT_SYMBOL(twl_i2c_read_u8);
David Brownella603a7f2008-10-15 12:15:39 +0200499
500/*----------------------------------------------------------------------*/
501
Lesly A Mca972d12011-04-14 17:57:53 +0530502/**
503 * twl_read_idcode_register - API to read the IDCODE register.
504 *
505 * Unlocks the IDCODE register and read the 32 bit value.
506 */
507static int twl_read_idcode_register(void)
508{
509 int err;
510
511 err = twl_i2c_write_u8(TWL4030_MODULE_INTBR, TWL_EEPROM_R_UNLOCK,
512 REG_UNLOCK_TEST_REG);
513 if (err) {
514 pr_err("TWL4030 Unable to unlock IDCODE registers -%d\n", err);
515 goto fail;
516 }
517
518 err = twl_i2c_read(TWL4030_MODULE_INTBR, (u8 *)(&twl_idcode),
519 REG_IDCODE_7_0, 4);
520 if (err) {
521 pr_err("TWL4030: unable to read IDCODE -%d\n", err);
522 goto fail;
523 }
524
525 err = twl_i2c_write_u8(TWL4030_MODULE_INTBR, 0x0, REG_UNLOCK_TEST_REG);
526 if (err)
527 pr_err("TWL4030 Unable to relock IDCODE registers -%d\n", err);
528fail:
529 return err;
530}
531
532/**
533 * twl_get_type - API to get TWL Si type.
534 *
535 * Api to get the TWL Si type from IDCODE value.
536 */
537int twl_get_type(void)
538{
539 return TWL_SIL_TYPE(twl_idcode);
540}
541EXPORT_SYMBOL_GPL(twl_get_type);
542
543/**
544 * twl_get_version - API to get TWL Si version.
545 *
546 * Api to get the TWL Si version from IDCODE value.
547 */
548int twl_get_version(void)
549{
550 return TWL_SIL_REV(twl_idcode);
551}
552EXPORT_SYMBOL_GPL(twl_get_version);
553
David Brownelldad759f2008-12-01 00:43:58 +0100554static struct device *
555add_numbered_child(unsigned chip, const char *name, int num,
David Brownell5725d662008-12-01 00:31:04 +0100556 void *pdata, unsigned pdata_len,
557 bool can_wakeup, int irq0, int irq1)
558{
559 struct platform_device *pdev;
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100560 struct twl_client *twl = &twl_modules[chip];
David Brownell5725d662008-12-01 00:31:04 +0100561 int status;
562
David Brownelldad759f2008-12-01 00:43:58 +0100563 pdev = platform_device_alloc(name, num);
David Brownell5725d662008-12-01 00:31:04 +0100564 if (!pdev) {
565 dev_dbg(&twl->client->dev, "can't alloc dev\n");
566 status = -ENOMEM;
567 goto err;
568 }
569
570 device_init_wakeup(&pdev->dev, can_wakeup);
571 pdev->dev.parent = &twl->client->dev;
572
573 if (pdata) {
574 status = platform_device_add_data(pdev, pdata, pdata_len);
575 if (status < 0) {
576 dev_dbg(&pdev->dev, "can't add platform_data\n");
577 goto err;
578 }
579 }
580
581 if (irq0) {
582 struct resource r[2] = {
583 { .start = irq0, .flags = IORESOURCE_IRQ, },
584 { .start = irq1, .flags = IORESOURCE_IRQ, },
585 };
586
587 status = platform_device_add_resources(pdev, r, irq1 ? 2 : 1);
588 if (status < 0) {
589 dev_dbg(&pdev->dev, "can't add irqs\n");
590 goto err;
591 }
592 }
593
594 status = platform_device_add(pdev);
595
596err:
597 if (status < 0) {
598 platform_device_put(pdev);
599 dev_err(&twl->client->dev, "can't add %s dev\n", name);
600 return ERR_PTR(status);
601 }
602 return &pdev->dev;
603}
604
David Brownelldad759f2008-12-01 00:43:58 +0100605static inline struct device *add_child(unsigned chip, const char *name,
606 void *pdata, unsigned pdata_len,
607 bool can_wakeup, int irq0, int irq1)
608{
609 return add_numbered_child(chip, name, -1, pdata, pdata_len,
610 can_wakeup, irq0, irq1);
611}
612
613static struct device *
614add_regulator_linked(int num, struct regulator_init_data *pdata,
615 struct regulator_consumer_supply *consumers,
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100616 unsigned num_consumers, unsigned long features)
David Brownelldad759f2008-12-01 00:43:58 +0100617{
Balaji T Ke8deb282009-12-14 00:25:31 +0100618 unsigned sub_chip_id;
David Brownelldad759f2008-12-01 00:43:58 +0100619 /* regulator framework demands init_data ... */
620 if (!pdata)
621 return NULL;
622
David Brownellb73eac72008-12-07 19:10:58 +0100623 if (consumers) {
David Brownelldad759f2008-12-01 00:43:58 +0100624 pdata->consumer_supplies = consumers;
625 pdata->num_consumer_supplies = num_consumers;
626 }
627
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100628 pdata->driver_data = (void *)features;
629
David Brownelldad759f2008-12-01 00:43:58 +0100630 /* NOTE: we currently ignore regulator IRQs, e.g. for short circuits */
Balaji T Ke8deb282009-12-14 00:25:31 +0100631 sub_chip_id = twl_map[TWL_MODULE_PM_MASTER].sid;
632 return add_numbered_child(sub_chip_id, "twl_reg", num,
David Brownelldad759f2008-12-01 00:43:58 +0100633 pdata, sizeof(*pdata), false, 0, 0);
634}
635
636static struct device *
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100637add_regulator(int num, struct regulator_init_data *pdata,
638 unsigned long features)
David Brownelldad759f2008-12-01 00:43:58 +0100639{
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100640 return add_regulator_linked(num, pdata, NULL, 0, features);
David Brownelldad759f2008-12-01 00:43:58 +0100641}
642
David Brownella603a7f2008-10-15 12:15:39 +0200643/*
David Brownella30d46c2008-10-20 23:46:28 +0200644 * NOTE: We know the first 8 IRQs after pdata->base_irq are
645 * for the PIH, and the next are for the PWR_INT SIH, since
646 * that's how twl_init_irq() sets things up.
David Brownella603a7f2008-10-15 12:15:39 +0200647 */
David Brownella603a7f2008-10-15 12:15:39 +0200648
David Brownelldad759f2008-12-01 00:43:58 +0100649static int
Felipe Balbi9e178622012-02-22 14:32:16 +0200650add_children(struct twl4030_platform_data *pdata, unsigned irq_base,
651 unsigned long features)
David Brownella603a7f2008-10-15 12:15:39 +0200652{
David Brownell5725d662008-12-01 00:31:04 +0100653 struct device *child;
Balaji T Ke8deb282009-12-14 00:25:31 +0100654 unsigned sub_chip_id;
David Brownella603a7f2008-10-15 12:15:39 +0200655
David Brownella603a7f2008-10-15 12:15:39 +0200656 if (twl_has_gpio() && pdata->gpio) {
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100657 child = add_child(SUB_CHIP_ID1, "twl4030_gpio",
David Brownell5725d662008-12-01 00:31:04 +0100658 pdata->gpio, sizeof(*pdata->gpio),
Felipe Balbi9e178622012-02-22 14:32:16 +0200659 false, irq_base + GPIO_INTR_OFFSET, 0);
David Brownell5725d662008-12-01 00:31:04 +0100660 if (IS_ERR(child))
661 return PTR_ERR(child);
David Brownella603a7f2008-10-15 12:15:39 +0200662 }
663
664 if (twl_has_keypad() && pdata->keypad) {
Balaji T Kfc7b92f2009-12-13 21:23:33 +0100665 child = add_child(SUB_CHIP_ID2, "twl4030_keypad",
David Brownell5725d662008-12-01 00:31:04 +0100666 pdata->keypad, sizeof(*pdata->keypad),
Felipe Balbi9e178622012-02-22 14:32:16 +0200667 true, irq_base + KEYPAD_INTR_OFFSET, 0);
David Brownell5725d662008-12-01 00:31:04 +0100668 if (IS_ERR(child))
669 return PTR_ERR(child);
David Brownella603a7f2008-10-15 12:15:39 +0200670 }
671
672 if (twl_has_madc() && pdata->madc) {
David Brownell5725d662008-12-01 00:31:04 +0100673 child = add_child(2, "twl4030_madc",
674 pdata->madc, sizeof(*pdata->madc),
Felipe Balbi9e178622012-02-22 14:32:16 +0200675 true, irq_base + MADC_INTR_OFFSET, 0);
David Brownell5725d662008-12-01 00:31:04 +0100676 if (IS_ERR(child))
677 return PTR_ERR(child);
David Brownella603a7f2008-10-15 12:15:39 +0200678 }
679
680 if (twl_has_rtc()) {
David Brownella603a7f2008-10-15 12:15:39 +0200681 /*
David Brownell5725d662008-12-01 00:31:04 +0100682 * REVISIT platform_data here currently might expose the
David Brownella603a7f2008-10-15 12:15:39 +0200683 * "msecure" line ... but for now we just expect board
David Brownell5725d662008-12-01 00:31:04 +0100684 * setup to tell the chip "it's always ok to SET_TIME".
David Brownella603a7f2008-10-15 12:15:39 +0200685 * Eventually, Linux might become more aware of such
686 * HW security concerns, and "least privilege".
687 */
Balaji T Ke8deb282009-12-14 00:25:31 +0100688 sub_chip_id = twl_map[TWL_MODULE_RTC].sid;
689 child = add_child(sub_chip_id, "twl_rtc",
David Brownell5725d662008-12-01 00:31:04 +0100690 NULL, 0,
Felipe Balbi9e178622012-02-22 14:32:16 +0200691 true, irq_base + RTC_INTR_OFFSET, 0);
David Brownell5725d662008-12-01 00:31:04 +0100692 if (IS_ERR(child))
693 return PTR_ERR(child);
David Brownella603a7f2008-10-15 12:15:39 +0200694 }
695
Rajendra Nayak9da66532009-12-13 22:29:47 +0100696 if (twl_has_usb() && pdata->usb && twl_class_is_4030()) {
Roger Quadrosf8ebdff2009-09-30 18:26:37 +0300697
698 static struct regulator_consumer_supply usb1v5 = {
699 .supply = "usb1v5",
700 };
701 static struct regulator_consumer_supply usb1v8 = {
702 .supply = "usb1v8",
703 };
704 static struct regulator_consumer_supply usb3v1 = {
705 .supply = "usb3v1",
706 };
707
708 /* First add the regulators so that they can be used by transceiver */
709 if (twl_has_regulator()) {
710 /* this is a template that gets copied */
711 struct regulator_init_data usb_fixed = {
712 .constraints.valid_modes_mask =
713 REGULATOR_MODE_NORMAL
714 | REGULATOR_MODE_STANDBY,
715 .constraints.valid_ops_mask =
716 REGULATOR_CHANGE_MODE
717 | REGULATOR_CHANGE_STATUS,
718 };
719
720 child = add_regulator_linked(TWL4030_REG_VUSB1V5,
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100721 &usb_fixed, &usb1v5, 1,
722 features);
Roger Quadrosf8ebdff2009-09-30 18:26:37 +0300723 if (IS_ERR(child))
724 return PTR_ERR(child);
725
726 child = add_regulator_linked(TWL4030_REG_VUSB1V8,
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100727 &usb_fixed, &usb1v8, 1,
728 features);
Roger Quadrosf8ebdff2009-09-30 18:26:37 +0300729 if (IS_ERR(child))
730 return PTR_ERR(child);
731
732 child = add_regulator_linked(TWL4030_REG_VUSB3V1,
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100733 &usb_fixed, &usb3v1, 1,
734 features);
Roger Quadrosf8ebdff2009-09-30 18:26:37 +0300735 if (IS_ERR(child))
736 return PTR_ERR(child);
737
738 }
739
David Brownell5725d662008-12-01 00:31:04 +0100740 child = add_child(0, "twl4030_usb",
741 pdata->usb, sizeof(*pdata->usb),
742 true,
743 /* irq0 = USB_PRES, irq1 = USB */
Felipe Balbi9e178622012-02-22 14:32:16 +0200744 irq_base + USB_PRES_INTR_OFFSET,
745 irq_base + USB_INTR_OFFSET);
Roger Quadrosf8ebdff2009-09-30 18:26:37 +0300746
David Brownell5725d662008-12-01 00:31:04 +0100747 if (IS_ERR(child))
748 return PTR_ERR(child);
David Brownelldad759f2008-12-01 00:43:58 +0100749
750 /* we need to connect regulators to this transceiver */
Roger Quadrosf8ebdff2009-09-30 18:26:37 +0300751 if (twl_has_regulator() && child) {
Mark Brown0dcc9a92012-02-03 11:05:37 +0000752 usb1v5.dev_name = dev_name(child);
753 usb1v8.dev_name = dev_name(child);
754 usb3v1.dev_name = dev_name(child);
Roger Quadrosf8ebdff2009-09-30 18:26:37 +0300755 }
David Brownelldad759f2008-12-01 00:43:58 +0100756 }
Hema HKe70357e32010-12-10 18:09:52 +0530757 if (twl_has_usb() && pdata->usb && twl_class_is_6030()) {
758
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100759 static struct regulator_consumer_supply usb3v3;
760 int regulator;
Hema HKe70357e32010-12-10 18:09:52 +0530761
762 if (twl_has_regulator()) {
763 /* this is a template that gets copied */
764 struct regulator_init_data usb_fixed = {
765 .constraints.valid_modes_mask =
766 REGULATOR_MODE_NORMAL
767 | REGULATOR_MODE_STANDBY,
768 .constraints.valid_ops_mask =
769 REGULATOR_CHANGE_MODE
770 | REGULATOR_CHANGE_STATUS,
771 };
772
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100773 if (features & TWL6025_SUBCLASS) {
774 usb3v3.supply = "ldousb";
775 regulator = TWL6025_REG_LDOUSB;
776 } else {
777 usb3v3.supply = "vusb";
778 regulator = TWL6030_REG_VUSB;
779 }
780 child = add_regulator_linked(regulator, &usb_fixed,
781 &usb3v3, 1,
782 features);
Hema HKe70357e32010-12-10 18:09:52 +0530783 if (IS_ERR(child))
784 return PTR_ERR(child);
785 }
786
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100787 pdata->usb->features = features;
788
Hema HKe70357e32010-12-10 18:09:52 +0530789 child = add_child(0, "twl6030_usb",
790 pdata->usb, sizeof(*pdata->usb),
791 true,
792 /* irq1 = VBUS_PRES, irq0 = USB ID */
Felipe Balbi9e178622012-02-22 14:32:16 +0200793 irq_base + USBOTG_INTR_OFFSET,
794 irq_base + USB_PRES_INTR_OFFSET);
Hema HKe70357e32010-12-10 18:09:52 +0530795
796 if (IS_ERR(child))
797 return PTR_ERR(child);
798 /* we need to connect regulators to this transceiver */
799 if (twl_has_regulator() && child)
Mark Brown0dcc9a92012-02-03 11:05:37 +0000800 usb3v3.dev_name = dev_name(child);
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100801 } else if (twl_has_regulator() && twl_class_is_6030()) {
802 if (features & TWL6025_SUBCLASS)
803 child = add_regulator(TWL6025_REG_LDOUSB,
804 pdata->ldousb, features);
805 else
806 child = add_regulator(TWL6030_REG_VUSB,
807 pdata->vusb, features);
Hema HKe70357e32010-12-10 18:09:52 +0530808
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100809 if (IS_ERR(child))
810 return PTR_ERR(child);
Hema HKe70357e32010-12-10 18:09:52 +0530811 }
David Brownelldad759f2008-12-01 00:43:58 +0100812
Keerthy153617f2011-02-23 16:26:54 +0530813 if (twl_has_watchdog() && twl_class_is_4030()) {
Timo Kokkonen80e45b12009-03-27 16:42:17 +0200814 child = add_child(0, "twl4030_wdt", NULL, 0, false, 0, 0);
815 if (IS_ERR(child))
816 return PTR_ERR(child);
817 }
818
Keerthy153617f2011-02-23 16:26:54 +0530819 if (twl_has_pwrbutton() && twl_class_is_4030()) {
Felipe Balbi9c3664d2009-08-03 18:16:38 +0200820 child = add_child(1, "twl4030_pwrbutton",
Felipe Balbi9e178622012-02-22 14:32:16 +0200821 NULL, 0, true, irq_base + 8 + 0, 0);
Felipe Balbi9c3664d2009-08-03 18:16:38 +0200822 if (IS_ERR(child))
823 return PTR_ERR(child);
824 }
825
Peter Ujfalusi4ae6df5e2011-05-31 15:21:13 +0300826 if (twl_has_codec() && pdata->audio && twl_class_is_4030()) {
Misael Lopez Cruzd62abe52010-02-23 18:10:19 -0600827 sub_chip_id = twl_map[TWL_MODULE_AUDIO_VOICE].sid;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000828 child = add_child(sub_chip_id, "twl4030-audio",
Peter Ujfalusi4ae6df5e2011-05-31 15:21:13 +0300829 pdata->audio, sizeof(*pdata->audio),
Misael Lopez Cruzd62abe52010-02-23 18:10:19 -0600830 false, 0, 0);
831 if (IS_ERR(child))
832 return PTR_ERR(child);
833 }
834
Peter Ujfalusi4ae6df5e2011-05-31 15:21:13 +0300835 if (twl_has_codec() && pdata->audio && twl_class_is_6030()) {
Misael Lopez Cruzd62abe52010-02-23 18:10:19 -0600836 sub_chip_id = twl_map[TWL_MODULE_AUDIO_VOICE].sid;
Misael Lopez Cruzf19b2822011-04-27 02:14:07 -0500837 child = add_child(sub_chip_id, "twl6040",
Peter Ujfalusi4ae6df5e2011-05-31 15:21:13 +0300838 pdata->audio, sizeof(*pdata->audio),
Peter Ujfalusi0b83dde2009-10-22 13:26:45 +0300839 false, 0, 0);
840 if (IS_ERR(child))
841 return PTR_ERR(child);
842 }
843
Rajendra Nayak9da66532009-12-13 22:29:47 +0100844 /* twl4030 regulators */
845 if (twl_has_regulator() && twl_class_is_4030()) {
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100846 child = add_regulator(TWL4030_REG_VPLL1, pdata->vpll1,
847 features);
David Brownelldad759f2008-12-01 00:43:58 +0100848 if (IS_ERR(child))
849 return PTR_ERR(child);
Juha Keski-Saariab4abe052009-12-11 11:12:15 +0100850
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100851 child = add_regulator(TWL4030_REG_VIO, pdata->vio,
852 features);
Juha Keski-Saariab4abe052009-12-11 11:12:15 +0100853 if (IS_ERR(child))
854 return PTR_ERR(child);
855
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100856 child = add_regulator(TWL4030_REG_VDD1, pdata->vdd1,
857 features);
Juha Keski-Saariab4abe052009-12-11 11:12:15 +0100858 if (IS_ERR(child))
859 return PTR_ERR(child);
860
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100861 child = add_regulator(TWL4030_REG_VDD2, pdata->vdd2,
862 features);
Juha Keski-Saariab4abe052009-12-11 11:12:15 +0100863 if (IS_ERR(child))
864 return PTR_ERR(child);
David Brownelldad759f2008-12-01 00:43:58 +0100865
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100866 child = add_regulator(TWL4030_REG_VMMC1, pdata->vmmc1,
867 features);
David Brownelldad759f2008-12-01 00:43:58 +0100868 if (IS_ERR(child))
869 return PTR_ERR(child);
870
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100871 child = add_regulator(TWL4030_REG_VDAC, pdata->vdac,
872 features);
David Brownelldad759f2008-12-01 00:43:58 +0100873 if (IS_ERR(child))
874 return PTR_ERR(child);
875
876 child = add_regulator((features & TWL4030_VAUX2)
877 ? TWL4030_REG_VAUX2_4030
878 : TWL4030_REG_VAUX2,
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100879 pdata->vaux2, features);
David Brownelldad759f2008-12-01 00:43:58 +0100880 if (IS_ERR(child))
881 return PTR_ERR(child);
Juha Keski-Saariab4abe052009-12-11 11:12:15 +0100882
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100883 child = add_regulator(TWL4030_REG_VINTANA1, pdata->vintana1,
884 features);
Juha Keski-Saariab4abe052009-12-11 11:12:15 +0100885 if (IS_ERR(child))
886 return PTR_ERR(child);
887
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100888 child = add_regulator(TWL4030_REG_VINTANA2, pdata->vintana2,
889 features);
Juha Keski-Saariab4abe052009-12-11 11:12:15 +0100890 if (IS_ERR(child))
891 return PTR_ERR(child);
892
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100893 child = add_regulator(TWL4030_REG_VINTDIG, pdata->vintdig,
894 features);
Juha Keski-Saariab4abe052009-12-11 11:12:15 +0100895 if (IS_ERR(child))
896 return PTR_ERR(child);
David Brownelldad759f2008-12-01 00:43:58 +0100897 }
898
David Brownelldad759f2008-12-01 00:43:58 +0100899 /* maybe add LDOs that are omitted on cost-reduced parts */
Rajendra Nayak9da66532009-12-13 22:29:47 +0100900 if (twl_has_regulator() && !(features & TPS_SUBSET)
901 && twl_class_is_4030()) {
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100902 child = add_regulator(TWL4030_REG_VPLL2, pdata->vpll2,
903 features);
David Brownelldad759f2008-12-01 00:43:58 +0100904 if (IS_ERR(child))
905 return PTR_ERR(child);
David Brownelldad759f2008-12-01 00:43:58 +0100906
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100907 child = add_regulator(TWL4030_REG_VMMC2, pdata->vmmc2,
908 features);
David Brownelldad759f2008-12-01 00:43:58 +0100909 if (IS_ERR(child))
910 return PTR_ERR(child);
911
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100912 child = add_regulator(TWL4030_REG_VSIM, pdata->vsim,
913 features);
David Brownelldad759f2008-12-01 00:43:58 +0100914 if (IS_ERR(child))
915 return PTR_ERR(child);
916
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100917 child = add_regulator(TWL4030_REG_VAUX1, pdata->vaux1,
918 features);
David Brownelldad759f2008-12-01 00:43:58 +0100919 if (IS_ERR(child))
920 return PTR_ERR(child);
921
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100922 child = add_regulator(TWL4030_REG_VAUX3, pdata->vaux3,
923 features);
David Brownelldad759f2008-12-01 00:43:58 +0100924 if (IS_ERR(child))
925 return PTR_ERR(child);
926
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100927 child = add_regulator(TWL4030_REG_VAUX4, pdata->vaux4,
928 features);
David Brownelldad759f2008-12-01 00:43:58 +0100929 if (IS_ERR(child))
930 return PTR_ERR(child);
David Brownella603a7f2008-10-15 12:15:39 +0200931 }
932
Rajendra Nayak9da66532009-12-13 22:29:47 +0100933 /* twl6030 regulators */
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100934 if (twl_has_regulator() && twl_class_is_6030() &&
935 !(features & TWL6025_SUBCLASS)) {
936 child = add_regulator(TWL6030_REG_VMMC, pdata->vmmc,
937 features);
938 if (IS_ERR(child))
939 return PTR_ERR(child);
940
941 child = add_regulator(TWL6030_REG_VPP, pdata->vpp,
942 features);
943 if (IS_ERR(child))
944 return PTR_ERR(child);
945
946 child = add_regulator(TWL6030_REG_VUSIM, pdata->vusim,
947 features);
948 if (IS_ERR(child))
949 return PTR_ERR(child);
950
951 child = add_regulator(TWL6030_REG_VCXIO, pdata->vcxio,
952 features);
953 if (IS_ERR(child))
954 return PTR_ERR(child);
955
956 child = add_regulator(TWL6030_REG_VDAC, pdata->vdac,
957 features);
958 if (IS_ERR(child))
959 return PTR_ERR(child);
960
961 child = add_regulator(TWL6030_REG_VAUX1_6030, pdata->vaux1,
962 features);
963 if (IS_ERR(child))
964 return PTR_ERR(child);
965
966 child = add_regulator(TWL6030_REG_VAUX2_6030, pdata->vaux2,
967 features);
968 if (IS_ERR(child))
969 return PTR_ERR(child);
970
971 child = add_regulator(TWL6030_REG_VAUX3_6030, pdata->vaux3,
972 features);
973 if (IS_ERR(child))
974 return PTR_ERR(child);
975
976 child = add_regulator(TWL6030_REG_CLK32KG, pdata->clk32kg,
977 features);
978 if (IS_ERR(child))
979 return PTR_ERR(child);
980 }
981
982 /* 6030 and 6025 share this regulator */
Rajendra Nayak9da66532009-12-13 22:29:47 +0100983 if (twl_has_regulator() && twl_class_is_6030()) {
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100984 child = add_regulator(TWL6030_REG_VANA, pdata->vana,
985 features);
986 if (IS_ERR(child))
987 return PTR_ERR(child);
988 }
989
990 /* twl6025 regulators */
991 if (twl_has_regulator() && twl_class_is_6030() &&
992 (features & TWL6025_SUBCLASS)) {
993 child = add_regulator(TWL6025_REG_LDO5, pdata->ldo5,
994 features);
Rajendra Nayak9da66532009-12-13 22:29:47 +0100995 if (IS_ERR(child))
996 return PTR_ERR(child);
997
Graeme Gregory521d8ec2011-05-12 14:27:55 +0100998 child = add_regulator(TWL6025_REG_LDO1, pdata->ldo1,
999 features);
Rajendra Nayak9da66532009-12-13 22:29:47 +01001000 if (IS_ERR(child))
1001 return PTR_ERR(child);
1002
Graeme Gregory521d8ec2011-05-12 14:27:55 +01001003 child = add_regulator(TWL6025_REG_LDO7, pdata->ldo7,
1004 features);
Rajendra Nayak9da66532009-12-13 22:29:47 +01001005 if (IS_ERR(child))
1006 return PTR_ERR(child);
1007
Graeme Gregory521d8ec2011-05-12 14:27:55 +01001008 child = add_regulator(TWL6025_REG_LDO6, pdata->ldo6,
1009 features);
Rajendra Nayak9da66532009-12-13 22:29:47 +01001010 if (IS_ERR(child))
1011 return PTR_ERR(child);
1012
Graeme Gregory521d8ec2011-05-12 14:27:55 +01001013 child = add_regulator(TWL6025_REG_LDOLN, pdata->ldoln,
1014 features);
Rajendra Nayak9da66532009-12-13 22:29:47 +01001015 if (IS_ERR(child))
1016 return PTR_ERR(child);
1017
Graeme Gregory521d8ec2011-05-12 14:27:55 +01001018 child = add_regulator(TWL6025_REG_LDO2, pdata->ldo2,
1019 features);
Rajendra Nayak9da66532009-12-13 22:29:47 +01001020 if (IS_ERR(child))
1021 return PTR_ERR(child);
1022
Graeme Gregory521d8ec2011-05-12 14:27:55 +01001023 child = add_regulator(TWL6025_REG_LDO4, pdata->ldo4,
1024 features);
Rajendra Nayak9da66532009-12-13 22:29:47 +01001025 if (IS_ERR(child))
1026 return PTR_ERR(child);
1027
Graeme Gregory521d8ec2011-05-12 14:27:55 +01001028 child = add_regulator(TWL6025_REG_LDO3, pdata->ldo3,
1029 features);
Rajendra Nayak9da66532009-12-13 22:29:47 +01001030 if (IS_ERR(child))
1031 return PTR_ERR(child);
1032
Graeme Gregory521d8ec2011-05-12 14:27:55 +01001033 child = add_regulator(TWL6025_REG_SMPS3, pdata->smps3,
1034 features);
Rajendra Nayak9da66532009-12-13 22:29:47 +01001035 if (IS_ERR(child))
1036 return PTR_ERR(child);
Balaji T K8e6de4a2011-02-10 18:44:50 +05301037
Graeme Gregory521d8ec2011-05-12 14:27:55 +01001038 child = add_regulator(TWL6025_REG_SMPS4, pdata->smps4,
1039 features);
Balaji T K8e6de4a2011-02-10 18:44:50 +05301040 if (IS_ERR(child))
1041 return PTR_ERR(child);
Graeme Gregory521d8ec2011-05-12 14:27:55 +01001042
1043 child = add_regulator(TWL6025_REG_VIO, pdata->vio6025,
1044 features);
1045 if (IS_ERR(child))
1046 return PTR_ERR(child);
1047
Rajendra Nayak9da66532009-12-13 22:29:47 +01001048 }
1049
Grazvydas Ignotas11c39c42010-10-01 13:17:50 +03001050 if (twl_has_bci() && pdata->bci &&
1051 !(features & (TPS_SUBSET | TWL5031))) {
1052 child = add_child(3, "twl4030_bci",
1053 pdata->bci, sizeof(*pdata->bci), false,
1054 /* irq0 = CHG_PRES, irq1 = BCI */
Felipe Balbi9e178622012-02-22 14:32:16 +02001055 irq_base + BCI_PRES_INTR_OFFSET,
1056 irq_base + BCI_INTR_OFFSET);
Grazvydas Ignotas11c39c42010-10-01 13:17:50 +03001057 if (IS_ERR(child))
1058 return PTR_ERR(child);
1059 }
1060
David Brownell5725d662008-12-01 00:31:04 +01001061 return 0;
David Brownella603a7f2008-10-15 12:15:39 +02001062}
1063
1064/*----------------------------------------------------------------------*/
1065
1066/*
1067 * These three functions initialize the on-chip clock framework,
1068 * letting it generate the right frequencies for USB, MADC, and
1069 * other purposes.
1070 */
1071static inline int __init protect_pm_master(void)
1072{
1073 int e = 0;
1074
Felipe Balbi49e6f872010-08-18 09:19:35 +03001075 e = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, 0,
1076 TWL4030_PM_MASTER_PROTECT_KEY);
David Brownella603a7f2008-10-15 12:15:39 +02001077 return e;
1078}
1079
1080static inline int __init unprotect_pm_master(void)
1081{
1082 int e = 0;
1083
Felipe Balbi49e6f872010-08-18 09:19:35 +03001084 e |= twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER,
1085 TWL4030_PM_MASTER_KEY_CFG1,
1086 TWL4030_PM_MASTER_PROTECT_KEY);
1087 e |= twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER,
1088 TWL4030_PM_MASTER_KEY_CFG2,
1089 TWL4030_PM_MASTER_PROTECT_KEY);
1090
David Brownella603a7f2008-10-15 12:15:39 +02001091 return e;
1092}
1093
Ilkka Koskinen38a68492009-10-22 14:14:09 +03001094static void clocks_init(struct device *dev,
1095 struct twl4030_clock_init_data *clock)
David Brownella603a7f2008-10-15 12:15:39 +02001096{
1097 int e = 0;
1098 struct clk *osc;
1099 u32 rate;
1100 u8 ctrl = HFCLK_FREQ_26_MHZ;
1101
1102#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
1103 if (cpu_is_omap2430())
Russell Kinge6b50c82009-01-10 10:40:42 +00001104 osc = clk_get(dev, "osc_ck");
David Brownella603a7f2008-10-15 12:15:39 +02001105 else
Russell Kinge6b50c82009-01-10 10:40:42 +00001106 osc = clk_get(dev, "osc_sys_ck");
Samuel Ortiz6354ab5c2008-12-07 20:50:25 +01001107
David Brownella603a7f2008-10-15 12:15:39 +02001108 if (IS_ERR(osc)) {
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001109 printk(KERN_WARNING "Skipping twl internal clock init and "
David Brownella603a7f2008-10-15 12:15:39 +02001110 "using bootloader value (unknown osc rate)\n");
1111 return;
1112 }
1113
1114 rate = clk_get_rate(osc);
1115 clk_put(osc);
1116
Samuel Ortiz6354ab5c2008-12-07 20:50:25 +01001117#else
1118 /* REVISIT for non-OMAP systems, pass the clock rate from
1119 * board init code, using platform_data.
1120 */
1121 osc = ERR_PTR(-EIO);
1122
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001123 printk(KERN_WARNING "Skipping twl internal clock init and "
Samuel Ortiz6354ab5c2008-12-07 20:50:25 +01001124 "using bootloader value (unknown osc rate)\n");
1125
1126 return;
1127#endif
1128
David Brownella603a7f2008-10-15 12:15:39 +02001129 switch (rate) {
1130 case 19200000:
1131 ctrl = HFCLK_FREQ_19p2_MHZ;
1132 break;
1133 case 26000000:
1134 ctrl = HFCLK_FREQ_26_MHZ;
1135 break;
1136 case 38400000:
1137 ctrl = HFCLK_FREQ_38p4_MHZ;
1138 break;
1139 }
1140
1141 ctrl |= HIGH_PERF_SQ;
Ilkka Koskinen38a68492009-10-22 14:14:09 +03001142 if (clock && clock->ck32k_lowpwr_enable)
1143 ctrl |= CK32K_LOWPWR_EN;
1144
David Brownella603a7f2008-10-15 12:15:39 +02001145 e |= unprotect_pm_master();
1146 /* effect->MADC+USB ck en */
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001147 e |= twl_i2c_write_u8(TWL_MODULE_PM_MASTER, ctrl, R_CFG_BOOT);
David Brownella603a7f2008-10-15 12:15:39 +02001148 e |= protect_pm_master();
1149
1150 if (e < 0)
1151 pr_err("%s: clock init err [%d]\n", DRIVER_NAME, e);
1152}
1153
1154/*----------------------------------------------------------------------*/
1155
David Brownella603a7f2008-10-15 12:15:39 +02001156
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001157static int twl_remove(struct i2c_client *client)
David Brownella603a7f2008-10-15 12:15:39 +02001158{
1159 unsigned i;
David Brownella30d46c2008-10-20 23:46:28 +02001160 int status;
David Brownella603a7f2008-10-15 12:15:39 +02001161
Balaji T Ke8deb282009-12-14 00:25:31 +01001162 if (twl_class_is_4030())
1163 status = twl4030_exit_irq();
1164 else
1165 status = twl6030_exit_irq();
1166
David Brownella30d46c2008-10-20 23:46:28 +02001167 if (status < 0)
1168 return status;
David Brownella603a7f2008-10-15 12:15:39 +02001169
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001170 for (i = 0; i < TWL_NUM_SLAVES; i++) {
1171 struct twl_client *twl = &twl_modules[i];
David Brownella603a7f2008-10-15 12:15:39 +02001172
1173 if (twl->client && twl->client != client)
1174 i2c_unregister_device(twl->client);
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001175 twl_modules[i].client = NULL;
David Brownella603a7f2008-10-15 12:15:39 +02001176 }
1177 inuse = false;
1178 return 0;
1179}
1180
Benoit Coussonec1a07b2012-03-02 11:11:26 +01001181/* NOTE: This driver only handles a single twl4030/tps659x0 chip */
Bryan Wu5b9cecd2010-12-08 10:42:04 +08001182static int __devinit
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001183twl_probe(struct i2c_client *client, const struct i2c_device_id *id)
David Brownella603a7f2008-10-15 12:15:39 +02001184{
David Brownella603a7f2008-10-15 12:15:39 +02001185 struct twl4030_platform_data *pdata = client->dev.platform_data;
Benoit Coussonaeb50322011-08-29 16:20:23 +02001186 struct device_node *node = client->dev.of_node;
Benoit Coussonec1a07b2012-03-02 11:11:26 +01001187 int irq_base = 0;
1188 int status;
1189 unsigned i;
Benoit Coussonaeb50322011-08-29 16:20:23 +02001190
1191 if (node && !pdata) {
1192 /*
1193 * XXX: Temporary pdata until the information is correctly
1194 * retrieved by every TWL modules from DT.
1195 */
1196 pdata = devm_kzalloc(&client->dev,
1197 sizeof(struct twl4030_platform_data),
1198 GFP_KERNEL);
1199 if (!pdata)
1200 return -ENOMEM;
1201 }
David Brownella603a7f2008-10-15 12:15:39 +02001202
1203 if (!pdata) {
1204 dev_dbg(&client->dev, "no platform data?\n");
1205 return -EINVAL;
1206 }
1207
1208 if (i2c_check_functionality(client->adapter, I2C_FUNC_I2C) == 0) {
1209 dev_dbg(&client->dev, "can't talk I2C?\n");
1210 return -EIO;
1211 }
1212
David Brownella30d46c2008-10-20 23:46:28 +02001213 if (inuse) {
David Brownella603a7f2008-10-15 12:15:39 +02001214 dev_dbg(&client->dev, "driver is already in use\n");
1215 return -EBUSY;
1216 }
1217
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001218 for (i = 0; i < TWL_NUM_SLAVES; i++) {
Benoit Coussonec1a07b2012-03-02 11:11:26 +01001219 struct twl_client *twl = &twl_modules[i];
David Brownella603a7f2008-10-15 12:15:39 +02001220
1221 twl->address = client->addr + i;
Benoit Coussonec1a07b2012-03-02 11:11:26 +01001222 if (i == 0) {
David Brownella603a7f2008-10-15 12:15:39 +02001223 twl->client = client;
Benoit Coussonec1a07b2012-03-02 11:11:26 +01001224 } else {
David Brownella603a7f2008-10-15 12:15:39 +02001225 twl->client = i2c_new_dummy(client->adapter,
1226 twl->address);
1227 if (!twl->client) {
Ilkka Koskinena8643432009-10-20 16:22:52 +03001228 dev_err(&client->dev,
David Brownella603a7f2008-10-15 12:15:39 +02001229 "can't attach client %d\n", i);
1230 status = -ENOMEM;
1231 goto fail;
1232 }
David Brownella603a7f2008-10-15 12:15:39 +02001233 }
1234 mutex_init(&twl->xfer_lock);
1235 }
Benoit Coussonec1a07b2012-03-02 11:11:26 +01001236
David Brownella603a7f2008-10-15 12:15:39 +02001237 inuse = true;
Benoit Coussonec1a07b2012-03-02 11:11:26 +01001238
Balaji T Ke8deb282009-12-14 00:25:31 +01001239 if ((id->driver_data) & TWL6030_CLASS) {
1240 twl_id = TWL6030_CLASS_ID;
1241 twl_map = &twl6030_map[0];
1242 } else {
1243 twl_id = TWL4030_CLASS_ID;
1244 twl_map = &twl4030_map[0];
1245 }
David Brownella603a7f2008-10-15 12:15:39 +02001246
1247 /* setup clock framework */
Ilkka Koskinen38a68492009-10-22 14:14:09 +03001248 clocks_init(&client->dev, pdata->clock);
David Brownella603a7f2008-10-15 12:15:39 +02001249
Lesly A Mca972d12011-04-14 17:57:53 +05301250 /* read TWL IDCODE Register */
1251 if (twl_id == TWL4030_CLASS_ID) {
Benoit Coussonec1a07b2012-03-02 11:11:26 +01001252 status = twl_read_idcode_register();
1253 WARN(status < 0, "Error: reading twl_idcode register value\n");
Lesly A Mca972d12011-04-14 17:57:53 +05301254 }
1255
Amit Kucheriaebf0bd32009-08-31 18:32:18 +02001256 /* load power event scripts */
1257 if (twl_has_power() && pdata->power)
1258 twl4030_power_init(pdata->power);
1259
David Brownella603a7f2008-10-15 12:15:39 +02001260 /* Maybe init the T2 Interrupt subsystem */
Felipe Balbi9e178622012-02-22 14:32:16 +02001261 if (client->irq) {
Balaji T Ke8deb282009-12-14 00:25:31 +01001262 if (twl_class_is_4030()) {
1263 twl4030_init_chip_irq(id->name);
Benoit Cousson78518ff2012-02-29 19:40:31 +01001264 irq_base = twl4030_init_irq(&client->dev, client->irq);
Balaji T Ke8deb282009-12-14 00:25:31 +01001265 } else {
Benoit Cousson78518ff2012-02-29 19:40:31 +01001266 irq_base = twl6030_init_irq(&client->dev, client->irq);
Balaji T Ke8deb282009-12-14 00:25:31 +01001267 }
1268
Benoit Cousson78518ff2012-02-29 19:40:31 +01001269 if (irq_base < 0) {
1270 status = irq_base;
David Brownella30d46c2008-10-20 23:46:28 +02001271 goto fail;
Benoit Cousson78518ff2012-02-29 19:40:31 +01001272 }
David Brownella603a7f2008-10-15 12:15:39 +02001273 }
1274
Benoit Coussonec1a07b2012-03-02 11:11:26 +01001275 /*
1276 * Disable TWL4030/TWL5030 I2C Pull-up on I2C1 and I2C4(SR) interface.
Moiz Sonasatha29aaf52010-02-16 18:57:21 -06001277 * Program I2C_SCL_CTRL_PU(bit 0)=0, I2C_SDA_CTRL_PU (bit 2)=0,
1278 * SR_I2C_SCL_CTRL_PU(bit 4)=0 and SR_I2C_SDA_CTRL_PU(bit 6)=0.
1279 */
Moiz Sonasatha29aaf52010-02-16 18:57:21 -06001280 if (twl_class_is_4030()) {
Benoit Coussonec1a07b2012-03-02 11:11:26 +01001281 u8 temp;
1282
Moiz Sonasatha29aaf52010-02-16 18:57:21 -06001283 twl_i2c_read_u8(TWL4030_MODULE_INTBR, &temp, REG_GPPUPDCTR1);
1284 temp &= ~(SR_I2C_SDA_CTRL_PU | SR_I2C_SCL_CTRL_PU | \
Benoit Coussonec1a07b2012-03-02 11:11:26 +01001285 I2C_SDA_CTRL_PU | I2C_SCL_CTRL_PU);
Moiz Sonasatha29aaf52010-02-16 18:57:21 -06001286 twl_i2c_write_u8(TWL4030_MODULE_INTBR, temp, REG_GPPUPDCTR1);
1287 }
1288
Benoit Coussonec1a07b2012-03-02 11:11:26 +01001289 status = -ENODEV;
1290
Benoit Coussonaeb50322011-08-29 16:20:23 +02001291 if (node)
1292 status = of_platform_populate(node, NULL, NULL, &client->dev);
Felipe Balbi9e178622012-02-22 14:32:16 +02001293 if (status)
1294 status = add_children(pdata, irq_base, id->driver_data);
Benoit Coussonaeb50322011-08-29 16:20:23 +02001295
David Brownella603a7f2008-10-15 12:15:39 +02001296fail:
1297 if (status < 0)
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001298 twl_remove(client);
Benoit Coussonec1a07b2012-03-02 11:11:26 +01001299
David Brownella603a7f2008-10-15 12:15:39 +02001300 return status;
1301}
1302
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001303static const struct i2c_device_id twl_ids[] = {
David Brownelldad759f2008-12-01 00:43:58 +01001304 { "twl4030", TWL4030_VAUX2 }, /* "Triton 2" */
1305 { "twl5030", 0 }, /* T2 updated */
Ilkka Koskinen1920a612009-11-10 17:26:15 +02001306 { "twl5031", TWL5031 }, /* TWL5030 updated */
David Brownelldad759f2008-12-01 00:43:58 +01001307 { "tps65950", 0 }, /* catalog version of twl5030 */
1308 { "tps65930", TPS_SUBSET }, /* fewer LDOs and DACs; no charger */
1309 { "tps65920", TPS_SUBSET }, /* fewer LDOs; no codec or charger */
Oleg Drokin59dead52011-07-01 13:34:13 +02001310 { "tps65921", TPS_SUBSET }, /* fewer LDOs; no codec, no LED
1311 and vibrator. Charger in USB module*/
Balaji T Ke8deb282009-12-14 00:25:31 +01001312 { "twl6030", TWL6030_CLASS }, /* "Phoenix power chip" */
Graeme Gregory521d8ec2011-05-12 14:27:55 +01001313 { "twl6025", TWL6030_CLASS | TWL6025_SUBCLASS }, /* "Phoenix lite" */
David Brownella603a7f2008-10-15 12:15:39 +02001314 { /* end of list */ },
1315};
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001316MODULE_DEVICE_TABLE(i2c, twl_ids);
David Brownella603a7f2008-10-15 12:15:39 +02001317
1318/* One Client Driver , 4 Clients */
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001319static struct i2c_driver twl_driver = {
David Brownella603a7f2008-10-15 12:15:39 +02001320 .driver.name = DRIVER_NAME,
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001321 .id_table = twl_ids,
1322 .probe = twl_probe,
1323 .remove = twl_remove,
David Brownella603a7f2008-10-15 12:15:39 +02001324};
1325
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001326static int __init twl_init(void)
David Brownella603a7f2008-10-15 12:15:39 +02001327{
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001328 return i2c_add_driver(&twl_driver);
David Brownella603a7f2008-10-15 12:15:39 +02001329}
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001330subsys_initcall(twl_init);
David Brownella603a7f2008-10-15 12:15:39 +02001331
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001332static void __exit twl_exit(void)
David Brownella603a7f2008-10-15 12:15:39 +02001333{
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001334 i2c_del_driver(&twl_driver);
David Brownella603a7f2008-10-15 12:15:39 +02001335}
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001336module_exit(twl_exit);
David Brownella603a7f2008-10-15 12:15:39 +02001337
1338MODULE_AUTHOR("Texas Instruments, Inc.");
Balaji T Kfc7b92f2009-12-13 21:23:33 +01001339MODULE_DESCRIPTION("I2C Core interface for TWL");
David Brownella603a7f2008-10-15 12:15:39 +02001340MODULE_LICENSE("GPL");