mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 00:24:40 +02:00
28ea12b3b3
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23421 3c298f89-4303-0410-b956-a3cf2f4a3e73
58 lines
1.6 KiB
Diff
58 lines
1.6 KiB
Diff
From 11f9a327e3dfc62773cfd4b3c93af19e7132cc7a Mon Sep 17 00:00:00 2001
|
|
From: Lars-Peter Clausen <lars@metafoo.de>
|
|
Date: Sat, 17 Jul 2010 11:16:29 +0000
|
|
Subject: [PATCH] MIPS: JZ4740: qi_lb60: Add gpio-charger device
|
|
|
|
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
|
|
---
|
|
arch/mips/jz4740/board-qi_lb60.c | 24 ++++++++++++++++++++++++
|
|
1 files changed, 24 insertions(+), 0 deletions(-)
|
|
|
|
--- a/arch/mips/jz4740/board-qi_lb60.c
|
|
+++ b/arch/mips/jz4740/board-qi_lb60.c
|
|
@@ -23,6 +23,7 @@
|
|
#include <linux/spi/spi_gpio.h>
|
|
#include <linux/power_supply.h>
|
|
#include <linux/power/jz4740-battery.h>
|
|
+#include <linux/power/gpio-charger.h>
|
|
|
|
#include <asm/mach-jz4740/jz4740_fb.h>
|
|
#include <asm/mach-jz4740/jz4740_mmc.h>
|
|
@@ -396,6 +397,28 @@ static struct platform_device qi_lb60_pw
|
|
},
|
|
};
|
|
|
|
+/* charger */
|
|
+static char *qi_lb60_batteries[] = {
|
|
+ "battery",
|
|
+};
|
|
+
|
|
+static struct gpio_charger_platform_data qi_lb60_charger_pdata = {
|
|
+ .name = "usb",
|
|
+ .type = POWER_SUPPLY_TYPE_USB,
|
|
+ .gpio = JZ_GPIO_PORTD(28),
|
|
+ .gpio_active_low = 1,
|
|
+ .batteries = qi_lb60_batteries,
|
|
+ .num_batteries = ARRAY_SIZE(qi_lb60_batteries),
|
|
+};
|
|
+
|
|
+static struct platform_device qi_lb60_charger_device = {
|
|
+ .name = "gpio-charger",
|
|
+ .dev = {
|
|
+ .platform_data = &qi_lb60_charger_pdata,
|
|
+ },
|
|
+};
|
|
+
|
|
+
|
|
static struct platform_device *jz_platform_devices[] __initdata = {
|
|
&jz4740_udc_device,
|
|
&jz4740_mmc_device,
|
|
@@ -410,6 +433,7 @@ static struct platform_device *jz_platfo
|
|
&jz4740_adc_device,
|
|
&qi_lb60_gpio_keys,
|
|
&qi_lb60_pwm_beeper,
|
|
+ &qi_lb60_charger_device,
|
|
};
|
|
|
|
static void __init board_gpio_setup(void)
|