]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
x86: superio: Add keyboard controller support to smsc_lpc47m driver
authorBin Meng <bmeng.cn@gmail.com>
Fri, 21 Aug 2015 07:18:51 +0000 (00:18 -0700)
committerLothar Waßmann <LW@KARO-electronics.de>
Thu, 10 Sep 2015 09:29:46 +0000 (11:29 +0200)
Add an api to enable and configure the integrated keyboard controller
on SMSC LPC47m superio chipset. It also adds several macros to help
future extension.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
arch/x86/include/asm/ibmpc.h
drivers/misc/smsc_lpc47m.c
include/smsc_lpc47m.h

index 678cde4c86832c6c5b78a7940d546a5be32b1d9f..1e9058c0c1d3ad8aa4e85a609e8b43948cb4c1e3 100644 (file)
@@ -24,4 +24,7 @@
 #define UART0_IRQ      4
 #define UART1_IRQ      3
 
 #define UART0_IRQ      4
 #define UART1_IRQ      3
 
+#define KBD_IRQ                1
+#define MSE_IRQ                12
+
 #endif
 #endif
index 1e50d5b82620761596294a1bffb97f21e86e88cd..fcce3a41db57f9ea758a1404369199da4dc87268 100644 (file)
@@ -22,7 +22,7 @@ static void pnp_exit_conf_state(u16 dev)
        outb(0xaa, port);
 }
 
        outb(0xaa, port);
 }
 
-void lpc47m_enable_serial(u16 dev, u16 iobase, u8 irq)
+void lpc47m_enable_serial(uint dev, uint iobase, uint irq)
 {
        pnp_enter_conf_state(dev);
        pnp_set_logical_device(dev);
 {
        pnp_enter_conf_state(dev);
        pnp_set_logical_device(dev);
@@ -32,3 +32,14 @@ void lpc47m_enable_serial(u16 dev, u16 iobase, u8 irq)
        pnp_set_enable(dev, 1);
        pnp_exit_conf_state(dev);
 }
        pnp_set_enable(dev, 1);
        pnp_exit_conf_state(dev);
 }
+
+void lpc47m_enable_kbc(uint dev, uint irq0, uint irq1)
+{
+       pnp_enter_conf_state(dev);
+       pnp_set_logical_device(dev);
+       pnp_set_enable(dev, 0);
+       pnp_set_irq(dev, PNP_IDX_IRQ0, irq0);
+       pnp_set_irq(dev, PNP_IDX_IRQ1, irq1);
+       pnp_set_enable(dev, 1);
+       pnp_exit_conf_state(dev);
+}
index 32b069df6f02d6a8373183e70518d6976df25879..419643f89f7397c311a22ef174fb758be2b52804 100644 (file)
@@ -7,14 +7,35 @@
 #ifndef _SMSC_LPC47M_H_
 #define _SMSC_LPC47M_H_
 
 #ifndef _SMSC_LPC47M_H_
 #define _SMSC_LPC47M_H_
 
+/* I/O address of LPC47M */
+#define LPC47M_IO_PORT 0x2e
+
+/* Logical device number */
+#define LPC47M_FDC     0       /* Floppy */
+#define LPC47M_SP2     2       /* Serial Port 2 */
+#define LPC47M_PP      3       /* Parallel Port */
+#define LPC47M_SP1     4       /* Serial Port 1 */
+#define LPC47M_KBC     7       /* Keyboard & Mouse */
+#define LPC47M_PME     10      /* Power Control */
+
 /**
  * Configure the base I/O port of the specified serial device and enable the
  * serial device.
  *
 /**
  * Configure the base I/O port of the specified serial device and enable the
  * serial device.
  *
- * @dev: High 8 bits = Super I/O port, low 8 bits = logical device number.
- * @iobase: Processor I/O port address to assign to this serial device.
- * @irq: Processor IRQ number to assign to this serial device.
+ * @dev: high 8 bits = super I/O port, low 8 bits = logical device number
+ * @iobase: processor I/O port address to assign to this serial device
+ * @irq: processor IRQ number to assign to this serial device
+ */
+void lpc47m_enable_serial(uint dev, uint iobase, uint irq);
+
+/**
+ * Configure the specified keyboard controller device and enable the keyboard
+ * controller device.
+ *
+ * @dev: high 8 bits = Super I/O port, low 8 bits = logical device number
+ * @irq0: processor IRQ number to assign to keyboard
+ * @irq1: processor IRQ number to assign to mouse
  */
  */
-void lpc47m_enable_serial(u16 dev, u16 iobase, u8 irq);
+void lpc47m_enable_kbc(uint dev, uint irq0, uint irq1);
 
 #endif /* _SMSC_LPC47M_H_ */
 
 #endif /* _SMSC_LPC47M_H_ */