Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 1 | /* |
| 2 | * SAMSUNG EXYNOS USB HOST OHCI Controller |
| 3 | * |
| 4 | * Copyright (C) 2011 Samsung Electronics Co.Ltd |
| 5 | * Author: Jingoo Han <jg1.han@samsung.com> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify it |
| 8 | * under the terms of the GNU General Public License as published by the |
| 9 | * Free Software Foundation; either version 2 of the License, or (at your |
| 10 | * option) any later version. |
| 11 | * |
| 12 | */ |
| 13 | |
| 14 | #include <linux/clk.h> |
Vivek Gautam | d513893 | 2012-07-16 11:25:36 +0530 | [diff] [blame] | 15 | #include <linux/of.h> |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 16 | #include <linux/platform_device.h> |
Jingoo Han | b827185 | 2013-02-12 15:29:15 -0800 | [diff] [blame] | 17 | #include <linux/platform_data/usb-ohci-exynos.h> |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 18 | #include <linux/usb/phy.h> |
Vivek Gautam | b506eeb | 2013-01-22 18:30:40 +0530 | [diff] [blame] | 19 | #include <linux/usb/samsung_usb_phy.h> |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 20 | |
| 21 | struct exynos_ohci_hcd { |
| 22 | struct device *dev; |
| 23 | struct usb_hcd *hcd; |
| 24 | struct clk *clk; |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 25 | struct usb_phy *phy; |
| 26 | struct usb_otg *otg; |
| 27 | struct exynos4_ohci_platdata *pdata; |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 28 | }; |
| 29 | |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 30 | static void exynos_ohci_phy_enable(struct exynos_ohci_hcd *exynos_ohci) |
| 31 | { |
| 32 | struct platform_device *pdev = to_platform_device(exynos_ohci->dev); |
| 33 | |
| 34 | if (exynos_ohci->phy) |
| 35 | usb_phy_init(exynos_ohci->phy); |
Thomas Abraham | 2871782 | 2013-04-11 17:12:30 +0530 | [diff] [blame] | 36 | else if (exynos_ohci->pdata && exynos_ohci->pdata->phy_init) |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 37 | exynos_ohci->pdata->phy_init(pdev, USB_PHY_TYPE_HOST); |
| 38 | } |
| 39 | |
| 40 | static void exynos_ohci_phy_disable(struct exynos_ohci_hcd *exynos_ohci) |
| 41 | { |
| 42 | struct platform_device *pdev = to_platform_device(exynos_ohci->dev); |
| 43 | |
| 44 | if (exynos_ohci->phy) |
| 45 | usb_phy_shutdown(exynos_ohci->phy); |
Thomas Abraham | 2871782 | 2013-04-11 17:12:30 +0530 | [diff] [blame] | 46 | else if (exynos_ohci->pdata && exynos_ohci->pdata->phy_exit) |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 47 | exynos_ohci->pdata->phy_exit(pdev, USB_PHY_TYPE_HOST); |
| 48 | } |
| 49 | |
Vincent Palatin | 5746510 | 2012-11-01 11:05:28 -0700 | [diff] [blame] | 50 | static int ohci_exynos_reset(struct usb_hcd *hcd) |
| 51 | { |
| 52 | return ohci_init(hcd_to_ohci(hcd)); |
| 53 | } |
| 54 | |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 55 | static int ohci_exynos_start(struct usb_hcd *hcd) |
| 56 | { |
| 57 | struct ohci_hcd *ohci = hcd_to_ohci(hcd); |
| 58 | int ret; |
| 59 | |
| 60 | ohci_dbg(ohci, "ohci_exynos_start, ohci:%p", ohci); |
| 61 | |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 62 | ret = ohci_run(ohci); |
| 63 | if (ret < 0) { |
Greg Kroah-Hartman | 5e41524 | 2012-04-27 11:24:41 -0700 | [diff] [blame] | 64 | dev_err(hcd->self.controller, "can't start %s\n", |
| 65 | hcd->self.bus_name); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 66 | ohci_stop(hcd); |
| 67 | return ret; |
| 68 | } |
| 69 | |
| 70 | return 0; |
| 71 | } |
| 72 | |
| 73 | static const struct hc_driver exynos_ohci_hc_driver = { |
| 74 | .description = hcd_name, |
| 75 | .product_desc = "EXYNOS OHCI Host Controller", |
| 76 | .hcd_priv_size = sizeof(struct ohci_hcd), |
| 77 | |
| 78 | .irq = ohci_irq, |
| 79 | .flags = HCD_MEMORY|HCD_USB11, |
| 80 | |
Vincent Palatin | 5746510 | 2012-11-01 11:05:28 -0700 | [diff] [blame] | 81 | .reset = ohci_exynos_reset, |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 82 | .start = ohci_exynos_start, |
| 83 | .stop = ohci_stop, |
| 84 | .shutdown = ohci_shutdown, |
| 85 | |
| 86 | .get_frame_number = ohci_get_frame, |
| 87 | |
| 88 | .urb_enqueue = ohci_urb_enqueue, |
| 89 | .urb_dequeue = ohci_urb_dequeue, |
| 90 | .endpoint_disable = ohci_endpoint_disable, |
| 91 | |
| 92 | .hub_status_data = ohci_hub_status_data, |
| 93 | .hub_control = ohci_hub_control, |
| 94 | #ifdef CONFIG_PM |
| 95 | .bus_suspend = ohci_bus_suspend, |
| 96 | .bus_resume = ohci_bus_resume, |
| 97 | #endif |
| 98 | .start_port_reset = ohci_start_port_reset, |
| 99 | }; |
| 100 | |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 101 | static int exynos_ohci_probe(struct platform_device *pdev) |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 102 | { |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 103 | struct exynos4_ohci_platdata *pdata = pdev->dev.platform_data; |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 104 | struct exynos_ohci_hcd *exynos_ohci; |
| 105 | struct usb_hcd *hcd; |
| 106 | struct ohci_hcd *ohci; |
| 107 | struct resource *res; |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 108 | struct usb_phy *phy; |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 109 | int irq; |
| 110 | int err; |
| 111 | |
Vivek Gautam | d513893 | 2012-07-16 11:25:36 +0530 | [diff] [blame] | 112 | /* |
| 113 | * Right now device-tree probed devices don't get dma_mask set. |
| 114 | * Since shared usb code relies on it, set it here for now. |
| 115 | * Once we move to full device tree support this will vanish off. |
| 116 | */ |
| 117 | if (!pdev->dev.dma_mask) |
Stephen Warren | 3b9561e | 2013-05-07 16:53:52 -0600 | [diff] [blame] | 118 | pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask; |
Vivek Gautam | d513893 | 2012-07-16 11:25:36 +0530 | [diff] [blame] | 119 | if (!pdev->dev.coherent_dma_mask) |
| 120 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); |
| 121 | |
Jingoo Han | 390a0a7 | 2012-06-28 16:30:30 +0900 | [diff] [blame] | 122 | exynos_ohci = devm_kzalloc(&pdev->dev, sizeof(struct exynos_ohci_hcd), |
| 123 | GFP_KERNEL); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 124 | if (!exynos_ohci) |
| 125 | return -ENOMEM; |
| 126 | |
Thomas Abraham | 2871782 | 2013-04-11 17:12:30 +0530 | [diff] [blame] | 127 | if (of_device_is_compatible(pdev->dev.of_node, |
| 128 | "samsung,exynos5440-ohci")) |
| 129 | goto skip_phy; |
| 130 | |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 131 | phy = devm_usb_get_phy(&pdev->dev, USB_PHY_TYPE_USB2); |
Felipe Balbi | 9ee1c7f | 2013-03-15 11:05:03 +0200 | [diff] [blame] | 132 | if (IS_ERR(phy)) { |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 133 | /* Fallback to pdata */ |
| 134 | if (!pdata) { |
| 135 | dev_warn(&pdev->dev, "no platform data or transceiver defined\n"); |
| 136 | return -EPROBE_DEFER; |
| 137 | } else { |
| 138 | exynos_ohci->pdata = pdata; |
| 139 | } |
| 140 | } else { |
| 141 | exynos_ohci->phy = phy; |
| 142 | exynos_ohci->otg = phy->otg; |
| 143 | } |
| 144 | |
Thomas Abraham | 2871782 | 2013-04-11 17:12:30 +0530 | [diff] [blame] | 145 | skip_phy: |
| 146 | |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 147 | exynos_ohci->dev = &pdev->dev; |
| 148 | |
| 149 | hcd = usb_create_hcd(&exynos_ohci_hc_driver, &pdev->dev, |
| 150 | dev_name(&pdev->dev)); |
| 151 | if (!hcd) { |
| 152 | dev_err(&pdev->dev, "Unable to create HCD\n"); |
Jingoo Han | 390a0a7 | 2012-06-28 16:30:30 +0900 | [diff] [blame] | 153 | return -ENOMEM; |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | exynos_ohci->hcd = hcd; |
Jingoo Han | 60d80ad | 2012-10-04 16:11:50 +0900 | [diff] [blame] | 157 | exynos_ohci->clk = devm_clk_get(&pdev->dev, "usbhost"); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 158 | |
| 159 | if (IS_ERR(exynos_ohci->clk)) { |
| 160 | dev_err(&pdev->dev, "Failed to get usbhost clock\n"); |
| 161 | err = PTR_ERR(exynos_ohci->clk); |
| 162 | goto fail_clk; |
| 163 | } |
| 164 | |
Thomas Abraham | c05c946 | 2012-10-03 08:41:37 +0900 | [diff] [blame] | 165 | err = clk_prepare_enable(exynos_ohci->clk); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 166 | if (err) |
Jingoo Han | 60d80ad | 2012-10-04 16:11:50 +0900 | [diff] [blame] | 167 | goto fail_clk; |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 168 | |
| 169 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 170 | if (!res) { |
| 171 | dev_err(&pdev->dev, "Failed to get I/O memory\n"); |
| 172 | err = -ENXIO; |
| 173 | goto fail_io; |
| 174 | } |
| 175 | |
| 176 | hcd->rsrc_start = res->start; |
| 177 | hcd->rsrc_len = resource_size(res); |
Jingoo Han | 390a0a7 | 2012-06-28 16:30:30 +0900 | [diff] [blame] | 178 | hcd->regs = devm_ioremap(&pdev->dev, res->start, hcd->rsrc_len); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 179 | if (!hcd->regs) { |
| 180 | dev_err(&pdev->dev, "Failed to remap I/O memory\n"); |
| 181 | err = -ENOMEM; |
| 182 | goto fail_io; |
| 183 | } |
| 184 | |
| 185 | irq = platform_get_irq(pdev, 0); |
| 186 | if (!irq) { |
| 187 | dev_err(&pdev->dev, "Failed to get IRQ\n"); |
| 188 | err = -ENODEV; |
Jingoo Han | 390a0a7 | 2012-06-28 16:30:30 +0900 | [diff] [blame] | 189 | goto fail_io; |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 190 | } |
| 191 | |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 192 | if (exynos_ohci->otg) |
| 193 | exynos_ohci->otg->set_host(exynos_ohci->otg, |
| 194 | &exynos_ohci->hcd->self); |
| 195 | |
| 196 | exynos_ohci_phy_enable(exynos_ohci); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 197 | |
| 198 | ohci = hcd_to_ohci(hcd); |
| 199 | ohci_hcd_init(ohci); |
| 200 | |
| 201 | err = usb_add_hcd(hcd, irq, IRQF_SHARED); |
| 202 | if (err) { |
| 203 | dev_err(&pdev->dev, "Failed to add USB HCD\n"); |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 204 | goto fail_add_hcd; |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | platform_set_drvdata(pdev, exynos_ohci); |
| 208 | |
| 209 | return 0; |
| 210 | |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 211 | fail_add_hcd: |
| 212 | exynos_ohci_phy_disable(exynos_ohci); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 213 | fail_io: |
Thomas Abraham | c05c946 | 2012-10-03 08:41:37 +0900 | [diff] [blame] | 214 | clk_disable_unprepare(exynos_ohci->clk); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 215 | fail_clk: |
| 216 | usb_put_hcd(hcd); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 217 | return err; |
| 218 | } |
| 219 | |
Bill Pemberton | fb4e98a | 2012-11-19 13:26:20 -0500 | [diff] [blame] | 220 | static int exynos_ohci_remove(struct platform_device *pdev) |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 221 | { |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 222 | struct exynos_ohci_hcd *exynos_ohci = platform_get_drvdata(pdev); |
| 223 | struct usb_hcd *hcd = exynos_ohci->hcd; |
| 224 | |
| 225 | usb_remove_hcd(hcd); |
| 226 | |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 227 | if (exynos_ohci->otg) |
| 228 | exynos_ohci->otg->set_host(exynos_ohci->otg, |
| 229 | &exynos_ohci->hcd->self); |
| 230 | |
| 231 | exynos_ohci_phy_disable(exynos_ohci); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 232 | |
Thomas Abraham | c05c946 | 2012-10-03 08:41:37 +0900 | [diff] [blame] | 233 | clk_disable_unprepare(exynos_ohci->clk); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 234 | |
| 235 | usb_put_hcd(hcd); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 236 | |
| 237 | return 0; |
| 238 | } |
| 239 | |
| 240 | static void exynos_ohci_shutdown(struct platform_device *pdev) |
| 241 | { |
| 242 | struct exynos_ohci_hcd *exynos_ohci = platform_get_drvdata(pdev); |
| 243 | struct usb_hcd *hcd = exynos_ohci->hcd; |
| 244 | |
| 245 | if (hcd->driver->shutdown) |
| 246 | hcd->driver->shutdown(hcd); |
| 247 | } |
| 248 | |
| 249 | #ifdef CONFIG_PM |
| 250 | static int exynos_ohci_suspend(struct device *dev) |
| 251 | { |
| 252 | struct exynos_ohci_hcd *exynos_ohci = dev_get_drvdata(dev); |
| 253 | struct usb_hcd *hcd = exynos_ohci->hcd; |
| 254 | struct ohci_hcd *ohci = hcd_to_ohci(hcd); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 255 | unsigned long flags; |
| 256 | int rc = 0; |
| 257 | |
| 258 | /* |
| 259 | * Root hub was already suspended. Disable irq emission and |
| 260 | * mark HW unaccessible, bail out if RH has been resumed. Use |
| 261 | * the spinlock to properly synchronize with possible pending |
| 262 | * RH suspend or resume activity. |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 263 | */ |
| 264 | spin_lock_irqsave(&ohci->lock, flags); |
Jingoo Han | 2b4ffe3 | 2012-02-23 17:26:33 +0900 | [diff] [blame] | 265 | if (ohci->rh_state != OHCI_RH_SUSPENDED && |
| 266 | ohci->rh_state != OHCI_RH_HALTED) { |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 267 | rc = -EINVAL; |
| 268 | goto fail; |
| 269 | } |
| 270 | |
| 271 | clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags); |
| 272 | |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 273 | if (exynos_ohci->otg) |
| 274 | exynos_ohci->otg->set_host(exynos_ohci->otg, |
| 275 | &exynos_ohci->hcd->self); |
| 276 | |
| 277 | exynos_ohci_phy_disable(exynos_ohci); |
Jingoo Han | e864abe | 2012-06-28 16:49:42 +0900 | [diff] [blame] | 278 | |
Thomas Abraham | c05c946 | 2012-10-03 08:41:37 +0900 | [diff] [blame] | 279 | clk_disable_unprepare(exynos_ohci->clk); |
Jingoo Han | e864abe | 2012-06-28 16:49:42 +0900 | [diff] [blame] | 280 | |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 281 | fail: |
| 282 | spin_unlock_irqrestore(&ohci->lock, flags); |
| 283 | |
| 284 | return rc; |
| 285 | } |
| 286 | |
| 287 | static int exynos_ohci_resume(struct device *dev) |
| 288 | { |
| 289 | struct exynos_ohci_hcd *exynos_ohci = dev_get_drvdata(dev); |
| 290 | struct usb_hcd *hcd = exynos_ohci->hcd; |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 291 | |
Thomas Abraham | c05c946 | 2012-10-03 08:41:37 +0900 | [diff] [blame] | 292 | clk_prepare_enable(exynos_ohci->clk); |
Jingoo Han | e864abe | 2012-06-28 16:49:42 +0900 | [diff] [blame] | 293 | |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 294 | if (exynos_ohci->otg) |
| 295 | exynos_ohci->otg->set_host(exynos_ohci->otg, |
| 296 | &exynos_ohci->hcd->self); |
| 297 | |
| 298 | exynos_ohci_phy_enable(exynos_ohci); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 299 | |
Florian Fainelli | cfa49b4 | 2012-10-08 15:11:29 +0200 | [diff] [blame] | 300 | ohci_resume(hcd, false); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 301 | |
| 302 | return 0; |
| 303 | } |
| 304 | #else |
| 305 | #define exynos_ohci_suspend NULL |
| 306 | #define exynos_ohci_resume NULL |
| 307 | #endif |
| 308 | |
| 309 | static const struct dev_pm_ops exynos_ohci_pm_ops = { |
| 310 | .suspend = exynos_ohci_suspend, |
| 311 | .resume = exynos_ohci_resume, |
| 312 | }; |
| 313 | |
Vivek Gautam | d513893 | 2012-07-16 11:25:36 +0530 | [diff] [blame] | 314 | #ifdef CONFIG_OF |
| 315 | static const struct of_device_id exynos_ohci_match[] = { |
Vivek Gautam | 6e24777 | 2013-01-24 19:15:29 +0530 | [diff] [blame] | 316 | { .compatible = "samsung,exynos4210-ohci" }, |
Thomas Abraham | 2871782 | 2013-04-11 17:12:30 +0530 | [diff] [blame] | 317 | { .compatible = "samsung,exynos5440-ohci" }, |
Vivek Gautam | d513893 | 2012-07-16 11:25:36 +0530 | [diff] [blame] | 318 | {}, |
| 319 | }; |
| 320 | MODULE_DEVICE_TABLE(of, exynos_ohci_match); |
| 321 | #endif |
| 322 | |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 323 | static struct platform_driver exynos_ohci_driver = { |
| 324 | .probe = exynos_ohci_probe, |
Bill Pemberton | 7690417 | 2012-11-19 13:21:08 -0500 | [diff] [blame] | 325 | .remove = exynos_ohci_remove, |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 326 | .shutdown = exynos_ohci_shutdown, |
| 327 | .driver = { |
| 328 | .name = "exynos-ohci", |
| 329 | .owner = THIS_MODULE, |
| 330 | .pm = &exynos_ohci_pm_ops, |
Vivek Gautam | d513893 | 2012-07-16 11:25:36 +0530 | [diff] [blame] | 331 | .of_match_table = of_match_ptr(exynos_ohci_match), |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 332 | } |
| 333 | }; |
| 334 | |
| 335 | MODULE_ALIAS("platform:exynos-ohci"); |
| 336 | MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>"); |