[PATCHv3 6/6] gpio: vt8500: Remove arch-vt8500 gpio driver

2013-03-28 Thread Tony Prisk
With the move to a combined pinctrl/gpio driver, the arch-vt8500
gpio driver is no longer required.

Signed-off-by: Tony Prisk 
---
 .../devicetree/bindings/gpio/gpio-vt8500.txt   |   24 --
 drivers/gpio/Kconfig   |6 -
 drivers/gpio/Makefile  |1 -
 drivers/gpio/gpio-vt8500.c |  355 
 4 files changed, 386 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/gpio/gpio-vt8500.txt
 delete mode 100644 drivers/gpio/gpio-vt8500.c

diff --git a/Documentation/devicetree/bindings/gpio/gpio-vt8500.txt 
b/Documentation/devicetree/bindings/gpio/gpio-vt8500.txt
deleted file mode 100644
index f4dc523..000
--- a/Documentation/devicetree/bindings/gpio/gpio-vt8500.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-VIA/Wondermedia VT8500 GPIO Controller
--
-
-Required properties:
-- compatible : "via,vt8500-gpio", "wm,wm8505-gpio"
-   or "wm,wm8650-gpio" depending on your SoC
-- reg : Should contain 1 register range (address and length)
-- #gpio-cells : should be <3>.
-   1) bank
-   2) pin number
-   3) flags - should be 0
-
-Example:
-
-   gpio: gpio-controller@d811 {
-   compatible = "via,vt8500-gpio";
-   gpio-controller;
-   reg = <0xd811 0x1>;
-   #gpio-cells = <3>;
-   };
-
-   vibrate {
-   gpios = < 0 1 0>; /* Bank 0, Pin 1, No flags */
-   };
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
index 93aaadf..b166e30 100644
--- a/drivers/gpio/Kconfig
+++ b/drivers/gpio/Kconfig
@@ -227,12 +227,6 @@ config GPIO_TS5500
  blocks of the TS-5500: DIO1, DIO2 and the LCD port, and the TS-5600
  LCD port.
 
-config GPIO_VT8500
-   bool "VIA/Wondermedia SoC GPIO Support"
-   depends on ARCH_VT8500
-   help
- Say yes here to support the VT8500/WM8505/WM8650 GPIO controller.
-
 config GPIO_XILINX
bool "Xilinx GPIO support"
depends on PPC_OF || MICROBLAZE
diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile
index 22e07bc..a274d7d 100644
--- a/drivers/gpio/Makefile
+++ b/drivers/gpio/Makefile
@@ -80,7 +80,6 @@ obj-$(CONFIG_GPIO_TWL6040)+= gpio-twl6040.o
 obj-$(CONFIG_GPIO_UCB1400) += gpio-ucb1400.o
 obj-$(CONFIG_GPIO_VIPERBOARD)  += gpio-viperboard.o
 obj-$(CONFIG_GPIO_VR41XX)  += gpio-vr41xx.o
-obj-$(CONFIG_GPIO_VT8500)  += gpio-vt8500.o
 obj-$(CONFIG_GPIO_VX855)   += gpio-vx855.o
 obj-$(CONFIG_GPIO_WM831X)  += gpio-wm831x.o
 obj-$(CONFIG_GPIO_WM8350)  += gpio-wm8350.o
diff --git a/drivers/gpio/gpio-vt8500.c b/drivers/gpio/gpio-vt8500.c
deleted file mode 100644
index 81683ca..000
--- a/drivers/gpio/gpio-vt8500.c
+++ /dev/null
@@ -1,355 +0,0 @@
-/* drivers/gpio/gpio-vt8500.c
- *
- * Copyright (C) 2012 Tony Prisk 
- * Based on arch/arm/mach-vt8500/gpio.c:
- * - Copyright (C) 2010 Alexey Charkov 
- *
- * This software is licensed under the terms of the GNU General Public
- * License version 2, as published by the Free Software Foundation, and
- * may be copied, distributed, and modified under those terms.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- */
-
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-
-/*
-   We handle GPIOs by bank, each bank containing up to 32 GPIOs covered
-   by one set of registers (although not all may be valid).
-
-   Because different SoC's have different register offsets, we pass the
-   register offsets as data in vt8500_gpio_dt_ids[].
-
-   A value of NO_REG is used to indicate that this register is not
-   supported. Only used for ->en at the moment.
-*/
-
-#define NO_REG 0x
-
-/*
- * struct vt8500_gpio_bank_regoffsets
- * @en: offset to enable register of the bank
- * @dir: offset to direction register of the bank
- * @data_out: offset to the data out register of the bank
- * @data_in: offset to the data in register of the bank
- * @ngpio: highest valid pin in this bank
- */
-
-struct vt8500_gpio_bank_regoffsets {
-   unsigned inten;
-   unsigned intdir;
-   unsigned intdata_out;
-   unsigned intdata_in;
-   unsigned char   ngpio;
-};
-
-struct vt8500_gpio_data {
-   unsigned intnum_banks;
-   struct vt8500_gpio_bank_regoffsets  banks[];
-};
-
-#define VT8500_BANK(__en, __dir, __out, __in, __ngpio) \
-{  \
-   .en = __en, \
-   .dir = __dir,   \
-   .data_out = __out,  

[PATCHv3 6/6] gpio: vt8500: Remove arch-vt8500 gpio driver

2013-03-28 Thread Tony Prisk
With the move to a combined pinctrl/gpio driver, the arch-vt8500
gpio driver is no longer required.

Signed-off-by: Tony Prisk li...@prisktech.co.nz
---
 .../devicetree/bindings/gpio/gpio-vt8500.txt   |   24 --
 drivers/gpio/Kconfig   |6 -
 drivers/gpio/Makefile  |1 -
 drivers/gpio/gpio-vt8500.c |  355 
 4 files changed, 386 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/gpio/gpio-vt8500.txt
 delete mode 100644 drivers/gpio/gpio-vt8500.c

diff --git a/Documentation/devicetree/bindings/gpio/gpio-vt8500.txt 
b/Documentation/devicetree/bindings/gpio/gpio-vt8500.txt
deleted file mode 100644
index f4dc523..000
--- a/Documentation/devicetree/bindings/gpio/gpio-vt8500.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-VIA/Wondermedia VT8500 GPIO Controller
--
-
-Required properties:
-- compatible : via,vt8500-gpio, wm,wm8505-gpio
-   or wm,wm8650-gpio depending on your SoC
-- reg : Should contain 1 register range (address and length)
-- #gpio-cells : should be 3.
-   1) bank
-   2) pin number
-   3) flags - should be 0
-
-Example:
-
-   gpio: gpio-controller@d811 {
-   compatible = via,vt8500-gpio;
-   gpio-controller;
-   reg = 0xd811 0x1;
-   #gpio-cells = 3;
-   };
-
-   vibrate {
-   gpios = gpio 0 1 0; /* Bank 0, Pin 1, No flags */
-   };
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
index 93aaadf..b166e30 100644
--- a/drivers/gpio/Kconfig
+++ b/drivers/gpio/Kconfig
@@ -227,12 +227,6 @@ config GPIO_TS5500
  blocks of the TS-5500: DIO1, DIO2 and the LCD port, and the TS-5600
  LCD port.
 
-config GPIO_VT8500
-   bool VIA/Wondermedia SoC GPIO Support
-   depends on ARCH_VT8500
-   help
- Say yes here to support the VT8500/WM8505/WM8650 GPIO controller.
-
 config GPIO_XILINX
bool Xilinx GPIO support
depends on PPC_OF || MICROBLAZE
diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile
index 22e07bc..a274d7d 100644
--- a/drivers/gpio/Makefile
+++ b/drivers/gpio/Makefile
@@ -80,7 +80,6 @@ obj-$(CONFIG_GPIO_TWL6040)+= gpio-twl6040.o
 obj-$(CONFIG_GPIO_UCB1400) += gpio-ucb1400.o
 obj-$(CONFIG_GPIO_VIPERBOARD)  += gpio-viperboard.o
 obj-$(CONFIG_GPIO_VR41XX)  += gpio-vr41xx.o
-obj-$(CONFIG_GPIO_VT8500)  += gpio-vt8500.o
 obj-$(CONFIG_GPIO_VX855)   += gpio-vx855.o
 obj-$(CONFIG_GPIO_WM831X)  += gpio-wm831x.o
 obj-$(CONFIG_GPIO_WM8350)  += gpio-wm8350.o
diff --git a/drivers/gpio/gpio-vt8500.c b/drivers/gpio/gpio-vt8500.c
deleted file mode 100644
index 81683ca..000
--- a/drivers/gpio/gpio-vt8500.c
+++ /dev/null
@@ -1,355 +0,0 @@
-/* drivers/gpio/gpio-vt8500.c
- *
- * Copyright (C) 2012 Tony Prisk li...@prisktech.co.nz
- * Based on arch/arm/mach-vt8500/gpio.c:
- * - Copyright (C) 2010 Alexey Charkov alch...@gmail.com
- *
- * This software is licensed under the terms of the GNU General Public
- * License version 2, as published by the Free Software Foundation, and
- * may be copied, distributed, and modified under those terms.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- */
-
-#include linux/module.h
-#include linux/err.h
-#include linux/io.h
-#include linux/gpio.h
-#include linux/platform_device.h
-#include linux/bitops.h
-#include linux/of.h
-#include linux/of_address.h
-#include linux/of_irq.h
-#include linux/of_device.h
-
-/*
-   We handle GPIOs by bank, each bank containing up to 32 GPIOs covered
-   by one set of registers (although not all may be valid).
-
-   Because different SoC's have different register offsets, we pass the
-   register offsets as data in vt8500_gpio_dt_ids[].
-
-   A value of NO_REG is used to indicate that this register is not
-   supported. Only used for -en at the moment.
-*/
-
-#define NO_REG 0x
-
-/*
- * struct vt8500_gpio_bank_regoffsets
- * @en: offset to enable register of the bank
- * @dir: offset to direction register of the bank
- * @data_out: offset to the data out register of the bank
- * @data_in: offset to the data in register of the bank
- * @ngpio: highest valid pin in this bank
- */
-
-struct vt8500_gpio_bank_regoffsets {
-   unsigned inten;
-   unsigned intdir;
-   unsigned intdata_out;
-   unsigned intdata_in;
-   unsigned char   ngpio;
-};
-
-struct vt8500_gpio_data {
-   unsigned intnum_banks;
-   struct vt8500_gpio_bank_regoffsets  banks[];
-};
-
-#define VT8500_BANK(__en, __dir, __out, __in, __ngpio) \
-{  \
-   .en