1 // SPDX-License-Identifier: GPL-2.0
3 * Driver for TI TPS6598x USB Power Delivery controller family
5 * Copyright (C) 2017, Intel Corporation
6 * Author: Heikki Krogerus <heikki.krogerus@linux.intel.com>
10 #include <linux/acpi.h>
11 #include <linux/module.h>
12 #include <linux/regmap.h>
13 #include <linux/interrupt.h>
14 #include <linux/usb/typec.h>
16 /* Register offsets */
17 #define TPS_REG_VID 0x00
18 #define TPS_REG_MODE 0x03
19 #define TPS_REG_CMD1 0x08
20 #define TPS_REG_DATA1 0x09
21 #define TPS_REG_INT_EVENT1 0x14
22 #define TPS_REG_INT_EVENT2 0x15
23 #define TPS_REG_INT_MASK1 0x16
24 #define TPS_REG_INT_MASK2 0x17
25 #define TPS_REG_INT_CLEAR1 0x18
26 #define TPS_REG_INT_CLEAR2 0x19
27 #define TPS_REG_STATUS 0x1a
28 #define TPS_REG_SYSTEM_CONF 0x28
29 #define TPS_REG_CTRL_CONF 0x29
30 #define TPS_REG_POWER_STATUS 0x3f
31 #define TPS_REG_RX_IDENTITY_SOP 0x48
33 /* TPS_REG_INT_* bits */
34 #define TPS_REG_INT_PLUG_EVENT BIT(3)
36 /* TPS_REG_STATUS bits */
37 #define TPS_STATUS_PLUG_PRESENT BIT(0)
38 #define TPS_STATUS_ORIENTATION BIT(4)
39 #define TPS_STATUS_PORTROLE(s) (!!((s) & BIT(5)))
40 #define TPS_STATUS_DATAROLE(s) (!!((s) & BIT(6)))
41 #define TPS_STATUS_VCONN(s) (!!((s) & BIT(7)))
43 /* TPS_REG_SYSTEM_CONF bits */
44 #define TPS_SYSCONF_PORTINFO(c) ((c) & 7)
48 TPS_PORTINFO_SINK_ACCESSORY
,
50 TPS_PORTINFO_DRP_UFP_DRD
,
52 TPS_PORTINFO_DRP_DFP_DRD
,
56 /* TPS_REG_POWER_STATUS bits */
57 #define TPS_POWER_STATUS_SOURCESINK BIT(1)
58 #define TPS_POWER_STATUS_PWROPMODE(p) (((p) & GENMASK(3, 2)) >> 2)
60 /* TPS_REG_RX_IDENTITY_SOP */
61 struct tps6598x_rx_identity_reg
{
63 struct usb_pd_identity identity
;
67 /* Standard Task return codes */
68 #define TPS_TASK_TIMEOUT 1
69 #define TPS_TASK_REJECTED 3
78 static const char *const modes
[] = {
79 [TPS_MODE_APP
] = "APP ",
80 [TPS_MODE_BOOT
] = "BOOT",
81 [TPS_MODE_BIST
] = "BIST",
82 [TPS_MODE_DISC
] = "DISC",
85 /* Unrecognized commands will be replaced with "!CMD" */
86 #define INVALID_CMD(_cmd_) (_cmd_ == 0x444d4321)
90 struct regmap
*regmap
;
91 struct mutex lock
; /* device lock */
94 struct typec_port
*port
;
95 struct typec_partner
*partner
;
96 struct usb_pd_identity partner_identity
;
100 * Max data bytes for Data1, Data2, and other registers. See ch 1.3.2:
101 * http://www.ti.com/lit/ug/slvuan1a/slvuan1a.pdf
103 #define TPS_MAX_LEN 64
106 tps6598x_block_read(struct tps6598x
*tps
, u8 reg
, void *val
, size_t len
)
108 u8 data
[TPS_MAX_LEN
+ 1];
111 if (WARN_ON(len
+ 1 > sizeof(data
)))
114 if (!tps
->i2c_protocol
)
115 return regmap_raw_read(tps
->regmap
, reg
, val
, len
);
117 ret
= regmap_raw_read(tps
->regmap
, reg
, data
, sizeof(data
));
124 memcpy(val
, &data
[1], len
);
128 static int tps6598x_block_write(struct tps6598x
*tps
, u8 reg
,
129 const void *val
, size_t len
)
131 u8 data
[TPS_MAX_LEN
+ 1];
133 if (!tps
->i2c_protocol
)
134 return regmap_raw_write(tps
->regmap
, reg
, val
, len
);
137 memcpy(&data
[1], val
, len
);
139 return regmap_raw_write(tps
->regmap
, reg
, data
, sizeof(data
));
142 static inline int tps6598x_read16(struct tps6598x
*tps
, u8 reg
, u16
*val
)
144 return tps6598x_block_read(tps
, reg
, val
, sizeof(u16
));
147 static inline int tps6598x_read32(struct tps6598x
*tps
, u8 reg
, u32
*val
)
149 return tps6598x_block_read(tps
, reg
, val
, sizeof(u32
));
152 static inline int tps6598x_read64(struct tps6598x
*tps
, u8 reg
, u64
*val
)
154 return tps6598x_block_read(tps
, reg
, val
, sizeof(u64
));
157 static inline int tps6598x_write16(struct tps6598x
*tps
, u8 reg
, u16 val
)
159 return tps6598x_block_write(tps
, reg
, &val
, sizeof(u16
));
162 static inline int tps6598x_write32(struct tps6598x
*tps
, u8 reg
, u32 val
)
164 return tps6598x_block_write(tps
, reg
, &val
, sizeof(u32
));
167 static inline int tps6598x_write64(struct tps6598x
*tps
, u8 reg
, u64 val
)
169 return tps6598x_block_write(tps
, reg
, &val
, sizeof(u64
));
173 tps6598x_write_4cc(struct tps6598x
*tps
, u8 reg
, const char *val
)
175 return tps6598x_block_write(tps
, reg
, val
, 4);
178 static int tps6598x_read_partner_identity(struct tps6598x
*tps
)
180 struct tps6598x_rx_identity_reg id
;
183 ret
= tps6598x_block_read(tps
, TPS_REG_RX_IDENTITY_SOP
,
188 tps
->partner_identity
= id
.identity
;
193 static int tps6598x_connect(struct tps6598x
*tps
, u32 status
)
195 struct typec_partner_desc desc
;
196 enum typec_pwr_opmode mode
;
203 ret
= tps6598x_read16(tps
, TPS_REG_POWER_STATUS
, &pwr_status
);
207 mode
= TPS_POWER_STATUS_PWROPMODE(pwr_status
);
209 desc
.usb_pd
= mode
== TYPEC_PWR_MODE_PD
;
210 desc
.accessory
= TYPEC_ACCESSORY_NONE
; /* XXX: handle accessories */
211 desc
.identity
= NULL
;
214 ret
= tps6598x_read_partner_identity(tps
);
217 desc
.identity
= &tps
->partner_identity
;
220 typec_set_pwr_opmode(tps
->port
, mode
);
221 typec_set_pwr_role(tps
->port
, TPS_STATUS_PORTROLE(status
));
222 typec_set_vconn_role(tps
->port
, TPS_STATUS_VCONN(status
));
223 typec_set_data_role(tps
->port
, TPS_STATUS_DATAROLE(status
));
225 tps
->partner
= typec_register_partner(tps
->port
, &desc
);
226 if (IS_ERR(tps
->partner
))
227 return PTR_ERR(tps
->partner
);
230 typec_partner_set_identity(tps
->partner
);
235 static void tps6598x_disconnect(struct tps6598x
*tps
, u32 status
)
237 if (!IS_ERR(tps
->partner
))
238 typec_unregister_partner(tps
->partner
);
240 typec_set_pwr_opmode(tps
->port
, TYPEC_PWR_MODE_USB
);
241 typec_set_pwr_role(tps
->port
, TPS_STATUS_PORTROLE(status
));
242 typec_set_vconn_role(tps
->port
, TPS_STATUS_VCONN(status
));
243 typec_set_data_role(tps
->port
, TPS_STATUS_DATAROLE(status
));
246 static int tps6598x_exec_cmd(struct tps6598x
*tps
, const char *cmd
,
247 size_t in_len
, u8
*in_data
,
248 size_t out_len
, u8
*out_data
)
250 unsigned long timeout
;
254 ret
= tps6598x_read32(tps
, TPS_REG_CMD1
, &val
);
257 if (val
&& !INVALID_CMD(val
))
261 ret
= tps6598x_block_write(tps
, TPS_REG_DATA1
,
267 ret
= tps6598x_write_4cc(tps
, TPS_REG_CMD1
, cmd
);
271 /* XXX: Using 1s for now, but it may not be enough for every command. */
272 timeout
= jiffies
+ msecs_to_jiffies(1000);
275 ret
= tps6598x_read32(tps
, TPS_REG_CMD1
, &val
);
278 if (INVALID_CMD(val
))
281 if (time_is_before_jiffies(timeout
))
286 ret
= tps6598x_block_read(tps
, TPS_REG_DATA1
,
292 ret
= tps6598x_block_read(tps
, TPS_REG_DATA1
, &val
, sizeof(u8
));
298 case TPS_TASK_TIMEOUT
:
300 case TPS_TASK_REJECTED
:
309 static int tps6598x_dr_set(struct typec_port
*port
, enum typec_data_role role
)
311 const char *cmd
= (role
== TYPEC_DEVICE
) ? "SWUF" : "SWDF";
312 struct tps6598x
*tps
= typec_get_drvdata(port
);
316 mutex_lock(&tps
->lock
);
318 ret
= tps6598x_exec_cmd(tps
, cmd
, 0, NULL
, 0, NULL
);
322 ret
= tps6598x_read32(tps
, TPS_REG_STATUS
, &status
);
326 if (role
!= TPS_STATUS_DATAROLE(status
)) {
331 typec_set_data_role(tps
->port
, role
);
334 mutex_unlock(&tps
->lock
);
339 static int tps6598x_pr_set(struct typec_port
*port
, enum typec_role role
)
341 const char *cmd
= (role
== TYPEC_SINK
) ? "SWSk" : "SWSr";
342 struct tps6598x
*tps
= typec_get_drvdata(port
);
346 mutex_lock(&tps
->lock
);
348 ret
= tps6598x_exec_cmd(tps
, cmd
, 0, NULL
, 0, NULL
);
352 ret
= tps6598x_read32(tps
, TPS_REG_STATUS
, &status
);
356 if (role
!= TPS_STATUS_PORTROLE(status
)) {
361 typec_set_pwr_role(tps
->port
, role
);
364 mutex_unlock(&tps
->lock
);
369 static const struct typec_operations tps6598x_ops
= {
370 .dr_set
= tps6598x_dr_set
,
371 .pr_set
= tps6598x_pr_set
,
374 static irqreturn_t
tps6598x_interrupt(int irq
, void *data
)
376 struct tps6598x
*tps
= data
;
382 mutex_lock(&tps
->lock
);
384 ret
= tps6598x_read64(tps
, TPS_REG_INT_EVENT1
, &event1
);
385 ret
|= tps6598x_read64(tps
, TPS_REG_INT_EVENT2
, &event2
);
387 dev_err(tps
->dev
, "%s: failed to read events\n", __func__
);
391 ret
= tps6598x_read32(tps
, TPS_REG_STATUS
, &status
);
393 dev_err(tps
->dev
, "%s: failed to read status\n", __func__
);
397 /* Handle plug insert or removal */
398 if ((event1
| event2
) & TPS_REG_INT_PLUG_EVENT
) {
399 if (status
& TPS_STATUS_PLUG_PRESENT
) {
400 ret
= tps6598x_connect(tps
, status
);
403 "failed to register partner\n");
405 tps6598x_disconnect(tps
, status
);
410 tps6598x_write64(tps
, TPS_REG_INT_CLEAR1
, event1
);
411 tps6598x_write64(tps
, TPS_REG_INT_CLEAR2
, event2
);
414 mutex_unlock(&tps
->lock
);
419 static int tps6598x_check_mode(struct tps6598x
*tps
)
424 ret
= tps6598x_read32(tps
, TPS_REG_MODE
, (void *)mode
);
428 switch (match_string(modes
, ARRAY_SIZE(modes
), mode
)) {
432 dev_warn(tps
->dev
, "dead-battery condition\n");
437 dev_err(tps
->dev
, "controller in unsupported mode \"%s\"\n",
445 static const struct regmap_config tps6598x_regmap_config
= {
448 .max_register
= 0x7F,
451 static int tps6598x_probe(struct i2c_client
*client
)
453 struct typec_capability typec_cap
= { };
454 struct tps6598x
*tps
;
460 tps
= devm_kzalloc(&client
->dev
, sizeof(*tps
), GFP_KERNEL
);
464 mutex_init(&tps
->lock
);
465 tps
->dev
= &client
->dev
;
467 tps
->regmap
= devm_regmap_init_i2c(client
, &tps6598x_regmap_config
);
468 if (IS_ERR(tps
->regmap
))
469 return PTR_ERR(tps
->regmap
);
471 ret
= tps6598x_read32(tps
, TPS_REG_VID
, &vid
);
476 * Checking can the adapter handle SMBus protocol. If it can not, the
477 * driver needs to take care of block reads separately.
479 * FIXME: Testing with I2C_FUNC_I2C. regmap-i2c uses I2C protocol
480 * unconditionally if the adapter has I2C_FUNC_I2C set.
482 if (i2c_check_functionality(client
->adapter
, I2C_FUNC_I2C
))
483 tps
->i2c_protocol
= true;
485 /* Make sure the controller has application firmware running */
486 ret
= tps6598x_check_mode(tps
);
490 ret
= tps6598x_read32(tps
, TPS_REG_STATUS
, &status
);
494 ret
= tps6598x_read32(tps
, TPS_REG_SYSTEM_CONF
, &conf
);
498 typec_cap
.revision
= USB_TYPEC_REV_1_2
;
499 typec_cap
.pd_revision
= 0x200;
500 typec_cap
.prefer_role
= TYPEC_NO_PREFERRED_ROLE
;
501 typec_cap
.driver_data
= tps
;
502 typec_cap
.ops
= &tps6598x_ops
;
504 switch (TPS_SYSCONF_PORTINFO(conf
)) {
505 case TPS_PORTINFO_SINK_ACCESSORY
:
506 case TPS_PORTINFO_SINK
:
507 typec_cap
.type
= TYPEC_PORT_SNK
;
508 typec_cap
.data
= TYPEC_PORT_UFP
;
510 case TPS_PORTINFO_DRP_UFP_DRD
:
511 case TPS_PORTINFO_DRP_DFP_DRD
:
512 typec_cap
.type
= TYPEC_PORT_DRP
;
513 typec_cap
.data
= TYPEC_PORT_DRD
;
515 case TPS_PORTINFO_DRP_UFP
:
516 typec_cap
.type
= TYPEC_PORT_DRP
;
517 typec_cap
.data
= TYPEC_PORT_UFP
;
519 case TPS_PORTINFO_DRP_DFP
:
520 typec_cap
.type
= TYPEC_PORT_DRP
;
521 typec_cap
.data
= TYPEC_PORT_DFP
;
523 case TPS_PORTINFO_SOURCE
:
524 typec_cap
.type
= TYPEC_PORT_SRC
;
525 typec_cap
.data
= TYPEC_PORT_DFP
;
531 tps
->port
= typec_register_port(&client
->dev
, &typec_cap
);
532 if (IS_ERR(tps
->port
))
533 return PTR_ERR(tps
->port
);
535 if (status
& TPS_STATUS_PLUG_PRESENT
) {
536 ret
= tps6598x_connect(tps
, status
);
538 dev_err(&client
->dev
, "failed to register partner\n");
541 ret
= devm_request_threaded_irq(&client
->dev
, client
->irq
, NULL
,
543 IRQF_SHARED
| IRQF_ONESHOT
,
544 dev_name(&client
->dev
), tps
);
546 tps6598x_disconnect(tps
, 0);
547 typec_unregister_port(tps
->port
);
551 i2c_set_clientdata(client
, tps
);
556 static int tps6598x_remove(struct i2c_client
*client
)
558 struct tps6598x
*tps
= i2c_get_clientdata(client
);
560 tps6598x_disconnect(tps
, 0);
561 typec_unregister_port(tps
->port
);
566 static const struct i2c_device_id tps6598x_id
[] = {
570 MODULE_DEVICE_TABLE(i2c
, tps6598x_id
);
572 static struct i2c_driver tps6598x_i2c_driver
= {
576 .probe_new
= tps6598x_probe
,
577 .remove
= tps6598x_remove
,
578 .id_table
= tps6598x_id
,
580 module_i2c_driver(tps6598x_i2c_driver
);
582 MODULE_AUTHOR("Heikki Krogerus <heikki.krogerus@linux.intel.com>");
583 MODULE_LICENSE("GPL v2");
584 MODULE_DESCRIPTION("TI TPS6598x USB Power Delivery Controller Driver");