Skip to content

Commit

Permalink
drivers: power: lt7182s: Add support for LT7184S
Browse files Browse the repository at this point in the history
The LT7184S is a dual-output monolithic PolyPhase DC/DC synchronous step-down
regulator that delivers up to 7A of continuous current from both channels
simultaneously and supports loads from -8A to +9A in either channel. LT7184S
contains the same set of registers with the LT7182S. Current and voltage ratings
are the major differences.
  • Loading branch information
cencarna authored and buha committed Dec 18, 2024
1 parent 3221c37 commit a75c351
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/power/lt7182s/lt7182s.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ static const struct lt7182s_chip_info lt7182s_info[] = {
[ID_LT7182S] = {
.name = "LT7182S",
},
[ID_LT7184S] = {
.name = "LT7184S",
},
};

/**
Expand Down
1 change: 1 addition & 0 deletions drivers/power/lt7182s/lt7182s.h
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@

enum lt7182s_chip_id {
ID_LT7182S,
ID_LT7184S,
};

enum lt7182s_output_channel {
Expand Down

0 comments on commit a75c351

Please sign in to comment.