summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@armlinux.org.uk>2016-09-26 15:13:04 +0100
committerRussell King (Oracle) <rmk+kernel@armlinux.org.uk>2024-01-08 10:30:23 +0000
commitef4c4c7f288e5b72b5a74e7456921cf502c9cdaf (patch)
tree829e737ff1b369bc5a4c40675e142971e351e9e4 /arch
parentca83fd461f56c6e0ad90f2f81399932df3414c2f (diff)
h3600 audio gpios
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-sa1100/h3600.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/arm/mach-sa1100/h3600.c b/arch/arm/mach-sa1100/h3600.c
index 4c0ba7372487..d9ac9aa87308 100644
--- a/arch/arm/mach-sa1100/h3600.c
+++ b/arch/arm/mach-sa1100/h3600.c
@@ -116,10 +116,30 @@ static struct platform_device_info h3600_audio_clk_device = {
.id = -1,
};
+static struct gpiod_lookup_table h3600_uda134x_gpio_table = {
+ .dev_id = "uda134x-codec",
+ .table = {
+ GPIO_LOOKUP("htc-egpio", 12, "qmute", GPIO_ACTIVE_HIGH),
+ { },
+ },
+};
+
+static struct gpiod_lookup_table h3600_asoc_gpio_table = {
+ .dev_id = "h3xxx-asoc",
+ .table = {
+ GPIO_LOOKUP("htc-egpio", 3, "audio-reset", GPIO_ACTIVE_HIGH),
+ GPIO_LOOKUP("htc-egpio", 10, "amp-power", GPIO_ACTIVE_HIGH),
+ GPIO_LOOKUP("htc-egpio", 11, "audio-power", GPIO_ACTIVE_HIGH),
+ { },
+ },
+};
+
static void __init h3600_mach_init(void)
{
gpiod_add_lookup_table(&h3600_sleeve_gpio_table);
gpiod_add_lookup_table(&h3600_audio_clk_gpio_table);
+ gpiod_add_lookup_table(&h3600_uda134x_gpio_table);
+ gpiod_add_lookup_table(&h3600_asoc_gpio_table);
platform_device_register_full(&h3600_audio_clk_device);