aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJerome Brunet <jbrunet@baylibre.com>2016-09-11 09:41:06 -0400
committerKevin Hilman <khilman@baylibre.com>2016-09-14 14:18:52 -0400
commitf94310ac076ea2cd84ff42c901e7a17382ad75f8 (patch)
tree451cdc3085f05465101cd38b202299fa7e1844b5
parent466fd24b681c734640ebefb1e611df0a5f10d011 (diff)
usb: dwc2: add support for Meson8b and GXBB SoCs
Add compatible strings for amlogic Meson8b and GXBB SoCs with the corresponding configuration parameters. Signed-off-by: Jerome Brunet <jbrunet@baylibre.com> Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> Acked-by: John Youn <johnyoun@synopsys.com> Signed-off-by: Kevin Hilman <khilman@baylibre.com>
-rw-r--r--Documentation/devicetree/bindings/usb/dwc2.txt2
-rw-r--r--drivers/usb/dwc2/platform.c34
2 files changed, 36 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/usb/dwc2.txt b/Documentation/devicetree/bindings/usb/dwc2.txt
index 20a68bf2b4e7..2c30a5479069 100644
--- a/Documentation/devicetree/bindings/usb/dwc2.txt
+++ b/Documentation/devicetree/bindings/usb/dwc2.txt
@@ -10,6 +10,8 @@ Required properties:
10 - "rockchip,rk3288-usb", "rockchip,rk3066-usb", "snps,dwc2": for rk3288 Soc; 10 - "rockchip,rk3288-usb", "rockchip,rk3066-usb", "snps,dwc2": for rk3288 Soc;
11 - "lantiq,arx100-usb": The DWC2 USB controller instance in Lantiq ARX SoCs; 11 - "lantiq,arx100-usb": The DWC2 USB controller instance in Lantiq ARX SoCs;
12 - "lantiq,xrx200-usb": The DWC2 USB controller instance in Lantiq XRX SoCs; 12 - "lantiq,xrx200-usb": The DWC2 USB controller instance in Lantiq XRX SoCs;
13 - "amlogic,meson8b-usb": The DWC2 USB controller instance in Amlogic Meson8b SoCs;
14 - "amlogic,meson-gxbb-usb": The DWC2 USB controller instance in Amlogic S905 SoCs;
13 - snps,dwc2: A generic DWC2 USB controller with default parameters. 15 - snps,dwc2: A generic DWC2 USB controller with default parameters.
14- reg : Should contain 1 register range (address and length) 16- reg : Should contain 1 register range (address and length)
15- interrupts : Should contain 1 interrupt 17- interrupts : Should contain 1 interrupt
diff --git a/drivers/usb/dwc2/platform.c b/drivers/usb/dwc2/platform.c
index fc6f5251de5d..8f7b34c8a5d4 100644
--- a/drivers/usb/dwc2/platform.c
+++ b/drivers/usb/dwc2/platform.c
@@ -181,6 +181,38 @@ static const struct dwc2_core_params params_ltq = {
181 .hibernation = -1, 181 .hibernation = -1,
182}; 182};
183 183
184static const struct dwc2_core_params params_amlogic = {
185 .otg_cap = DWC2_CAP_PARAM_NO_HNP_SRP_CAPABLE,
186 .otg_ver = -1,
187 .dma_enable = 1,
188 .dma_desc_enable = 0,
189 .dma_desc_fs_enable = 0,
190 .speed = DWC2_SPEED_PARAM_HIGH,
191 .enable_dynamic_fifo = 1,
192 .en_multiple_tx_fifo = -1,
193 .host_rx_fifo_size = 512,
194 .host_nperio_tx_fifo_size = 500,
195 .host_perio_tx_fifo_size = 500,
196 .max_transfer_size = -1,
197 .max_packet_count = -1,
198 .host_channels = 16,
199 .phy_type = DWC2_PHY_TYPE_PARAM_UTMI,
200 .phy_utmi_width = -1,
201 .phy_ulpi_ddr = -1,
202 .phy_ulpi_ext_vbus = -1,
203 .i2c_enable = -1,
204 .ulpi_fs_ls = -1,
205 .host_support_fs_ls_low_power = -1,
206 .host_ls_low_power_phy_clk = -1,
207 .ts_dline = -1,
208 .reload_ctl = 1,
209 .ahbcfg = GAHBCFG_HBSTLEN_INCR8 <<
210 GAHBCFG_HBSTLEN_SHIFT,
211 .uframe_sched = 0,
212 .external_id_pin_ctl = -1,
213 .hibernation = -1,
214};
215
184/* 216/*
185 * Check the dr_mode against the module configuration and hardware 217 * Check the dr_mode against the module configuration and hardware
186 * capabilities. 218 * capabilities.
@@ -464,6 +496,8 @@ static const struct of_device_id dwc2_of_match_table[] = {
464 { .compatible = "lantiq,xrx200-usb", .data = &params_ltq }, 496 { .compatible = "lantiq,xrx200-usb", .data = &params_ltq },
465 { .compatible = "snps,dwc2", .data = NULL }, 497 { .compatible = "snps,dwc2", .data = NULL },
466 { .compatible = "samsung,s3c6400-hsotg", .data = NULL}, 498 { .compatible = "samsung,s3c6400-hsotg", .data = NULL},
499 { .compatible = "amlogic,meson8b-usb", .data = &params_amlogic },
500 { .compatible = "amlogic,meson-gxbb-usb", .data = &params_amlogic },
467 {}, 501 {},
468}; 502};
469MODULE_DEVICE_TABLE(of, dwc2_of_match_table); 503MODULE_DEVICE_TABLE(of, dwc2_of_match_table);