upgrade 3.13 targets to 3.13.2, refresh patches
[openwrt/staging/mkresin.git] / target / linux / sunxi / patches-3.13 / 171-clk-sunxi-add-support-for-sun5i-usbclocks.patch
1 From 6b5cb5cada555c90562aed82e8891439a35009ab Mon Sep 17 00:00:00 2001
2 From: arokux <arokux@gmail.com>
3 Date: Sun, 6 Oct 2013 14:04:50 +0200
4 Subject: [PATCH] clk: sun5i: Add support for USB clocks
5
6 Signed-off-by: Hans de Goede <hdegoede@redhat.com>
7 ---
8 drivers/clk/sunxi/clk-sunxi.c | 5 +++++
9 1 file changed, 5 insertions(+)
10
11 --- a/drivers/clk/sunxi/clk-sunxi.c
12 +++ b/drivers/clk/sunxi/clk-sunxi.c
13 @@ -709,6 +709,10 @@ static const struct gates_data sun47i_us
14 .mask = {0x1C0},
15 };
16
17 +static const struct gates_data sun5i_usb_gates_data __initconst = {
18 + .mask = {0x140},
19 +};
20 +
21 static const struct gates_data sun5i_a10s_ahb_gates_data __initconst = {
22 .mask = {0x147667e7, 0x185915},
23 };
24 @@ -1028,6 +1032,7 @@ static const struct of_device_id clk_gat
25 {.compatible = "allwinner,sun47i-usb-gates-clk", .data = &sun47i_usb_gates_data,},
26 {.compatible = "allwinner,sun5i-a10s-ahb-gates-clk", .data = &sun5i_a10s_ahb_gates_data,},
27 {.compatible = "allwinner,sun5i-a13-ahb-gates-clk", .data = &sun5i_a13_ahb_gates_data,},
28 + {.compatible = "allwinner,sun5i-usb-gates-clk", .data = &sun5i_usb_gates_data,},
29 {.compatible = "allwinner,sun6i-a31-ahb1-gates-clk", .data = &sun6i_a31_ahb1_gates_data,},
30 {.compatible = "allwinner,sun7i-a20-ahb-gates-clk", .data = &sun7i_a20_ahb_gates_data,},
31 {.compatible = "allwinner,sun4i-apb0-gates-clk", .data = &sun4i_apb0_gates_data,},