ralink: update patches
[openwrt.git] / target / linux / ramips / patches-3.9 / 0129-MIPS-ralink-add-pinmux-driver.patch
1 From 596c13f9c14edfe1ed71fe64274825c1978c964c Mon Sep 17 00:00:00 2001
2 From: John Crispin <blogic@openwrt.org>
3 Date: Mon, 22 Apr 2013 23:11:42 +0200
4 Subject: [PATCH 129/164] MIPS: ralink: add pinmux driver
5
6 Add code to setup the pinmux on ralonk SoC. The SoC has a single 32 bit register
7 for this functionality with simple on/off bits. Building a full featured pinctrl
8 driver would be overkill.
9
10 Signed-off-by: John Crispin <blogic@openwrt.org>
11 ---
12  arch/mips/ralink/Makefile |    2 +-
13  arch/mips/ralink/common.h |    2 ++
14  arch/mips/ralink/of.c     |    2 ++
15  arch/mips/ralink/pinmux.c |   77 +++++++++++++++++++++++++++++++++++++++++++++
16  4 files changed, 82 insertions(+), 1 deletion(-)
17  create mode 100644 arch/mips/ralink/pinmux.c
18
19 diff --git a/arch/mips/ralink/Makefile b/arch/mips/ralink/Makefile
20 index 38cf1a8..341b4de 100644
21 --- a/arch/mips/ralink/Makefile
22 +++ b/arch/mips/ralink/Makefile
23 @@ -6,7 +6,7 @@
24  # Copyright (C) 2009-2011 Gabor Juhos <juhosg@openwrt.org>
25  # Copyright (C) 2013 John Crispin <blogic@openwrt.org>
26  
27 -obj-y := prom.o of.o reset.o clk.o irq.o
28 +obj-y := prom.o of.o reset.o clk.o irq.o pinmux.o
29  
30  obj-$(CONFIG_SOC_RT288X) += rt288x.o
31  obj-$(CONFIG_SOC_RT305X) += rt305x.o
32 diff --git a/arch/mips/ralink/common.h b/arch/mips/ralink/common.h
33 index 83144c3..f113fd6 100644
34 --- a/arch/mips/ralink/common.h
35 +++ b/arch/mips/ralink/common.h
36 @@ -50,4 +50,6 @@ extern void prom_soc_init(struct ralink_soc_info *soc_info);
37  
38  __iomem void *plat_of_remap_node(const char *node);
39  
40 +void ralink_pinmux(void);
41 +
42  #endif /* _RALINK_COMMON_H__ */
43 diff --git a/arch/mips/ralink/of.c b/arch/mips/ralink/of.c
44 index fb15695..f916774 100644
45 --- a/arch/mips/ralink/of.c
46 +++ b/arch/mips/ralink/of.c
47 @@ -110,6 +110,8 @@ static int __init plat_of_setup(void)
48         if (of_platform_populate(NULL, of_ids, NULL, NULL))
49                 panic("failed to populate DT\n");
50  
51 +       ralink_pinmux();
52 +
53         return 0;
54  }
55  
56 diff --git a/arch/mips/ralink/pinmux.c b/arch/mips/ralink/pinmux.c
57 new file mode 100644
58 index 0000000..1720216
59 --- /dev/null
60 +++ b/arch/mips/ralink/pinmux.c
61 @@ -0,0 +1,77 @@
62 +/*
63 + *  This program is free software; you can redistribute it and/or modify it
64 + *  under the terms of the GNU General Public License version 2 as published
65 + *  by the Free Software Foundation.
66 + *
67 + *  Copyright (C) 2013 John Crispin <blogic@openwrt.org>
68 + */
69 +
70 +#include <linux/kernel.h>
71 +#include <linux/of.h>
72 +
73 +#include <asm/mach-ralink/ralink_regs.h>
74 +
75 +#include "common.h"
76 +
77 +#define SYSC_REG_GPIO_MODE     0x60
78 +
79 +static int ralink_mux_mask(const char *name, struct ralink_pinmux_grp *grps, u32* mask)
80 +{
81 +       for (; grps && grps->name; grps++)
82 +               if (!strcmp(grps->name, name)) {
83 +                       *mask = grps->mask;
84 +                       return 0;
85 +               }
86 +
87 +       return -1;
88 +}
89 +
90 +void ralink_pinmux(void)
91 +{
92 +       const __be32 *wdt;
93 +       struct device_node *np;
94 +       struct property *prop;
95 +       const char *uart, *pin;
96 +       u32 mode = 0;
97 +       int m;
98 +
99 +       np = of_find_compatible_node(NULL, NULL, "ralink,rt3050-sysc");
100 +       if (!np)
101 +               return;
102 +
103 +       of_property_for_each_string(np, "ralink,gpiomux", prop, pin) {
104 +               if (!ralink_mux_mask(pin, rt_gpio_pinmux.mode, &m)) {
105 +                       mode |= m;
106 +                       pr_debug("pinmux: registered gpiomux \"%s\"\n", pin);
107 +               } else {
108 +                       pr_err("pinmux: failed to load \"%s\"\n", pin);
109 +               }
110 +       }
111 +
112 +       of_property_for_each_string(np, "ralink,pinmux", prop, pin) {
113 +               if (!ralink_mux_mask(pin, rt_gpio_pinmux.mode, &m)) {
114 +                       mode &= ~m;
115 +                       pr_debug("pinmux: registered pinmux \"%s\"\n", pin);
116 +               } else {
117 +                       pr_err("pinmux: failed to load group \"%s\"\n", pin);
118 +               }
119 +       }
120 +
121 +       of_property_read_string(np, "ralink,uartmux", &uart);
122 +       if (uart) {
123 +               mode &= ~(rt_gpio_pinmux.uart_mask << rt_gpio_pinmux.uart_shift);
124 +               if (ralink_mux_mask(uart, rt_gpio_pinmux.uart, &m)) {
125 +                       pr_err("pinmux: failed to load uartmux \"%s\"\n", uart);
126 +                       mode |= rt_gpio_pinmux.uart_mask << rt_gpio_pinmux.uart_shift;
127 +               } else {
128 +                       mode |= m << rt_gpio_pinmux.uart_shift;
129 +                       pr_debug("pinmux: registered uartmux \"%s\"\n", uart);
130 +               }
131 +       }
132 +
133 +       wdt = of_get_property(np, "ralink,wdtmux", NULL);
134 +       if (wdt && *wdt && rt_gpio_pinmux.wdt_reset)
135 +               rt_gpio_pinmux.wdt_reset();
136 +
137 +       rt_sysc_w32(mode, SYSC_REG_GPIO_MODE);
138 +}
139 -- 
140 1.7.10.4
141