Commit 4b6ec08f authored by Luca Ceresoli's avatar Luca Ceresoli Committed by Lee Jones

mfd: lp87565: Add LP87524-Q1 variant

Add support for the LP87524B/J/P-Q1 Four 4-MHz Buck Converter. This is a
variant of the LP87565 having 4 single-phase outputs and up to 10 A of
total output current.
Signed-off-by: default avatarLuca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent f9c6785c
...@@ -26,6 +26,10 @@ static const struct mfd_cell lp87565_cells[] = { ...@@ -26,6 +26,10 @@ static const struct mfd_cell lp87565_cells[] = {
static const struct of_device_id of_lp87565_match_table[] = { static const struct of_device_id of_lp87565_match_table[] = {
{ .compatible = "ti,lp87565", }, { .compatible = "ti,lp87565", },
{
.compatible = "ti,lp87524-q1",
.data = (void *)LP87565_DEVICE_TYPE_LP87524_Q1,
},
{ {
.compatible = "ti,lp87565-q1", .compatible = "ti,lp87565-q1",
.data = (void *)LP87565_DEVICE_TYPE_LP87565_Q1, .data = (void *)LP87565_DEVICE_TYPE_LP87565_Q1,
......
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
enum lp87565_device_type { enum lp87565_device_type {
LP87565_DEVICE_TYPE_UNKNOWN = 0, LP87565_DEVICE_TYPE_UNKNOWN = 0,
LP87565_DEVICE_TYPE_LP87524_Q1,
LP87565_DEVICE_TYPE_LP87561_Q1, LP87565_DEVICE_TYPE_LP87561_Q1,
LP87565_DEVICE_TYPE_LP87565_Q1, LP87565_DEVICE_TYPE_LP87565_Q1,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment