pci-exynos.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. /*
  2. * PCIe host controller driver for Samsung EXYNOS SoCs
  3. *
  4. * Copyright (C) 2013 Samsung Electronics Co., Ltd.
  5. * http://www.samsung.com
  6. *
  7. * Author: Jingoo Han <jg1.han@samsung.com>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #include <linux/clk.h>
  14. #include <linux/delay.h>
  15. #include <linux/gpio.h>
  16. #include <linux/interrupt.h>
  17. #include <linux/kernel.h>
  18. #include <linux/module.h>
  19. #include <linux/of_gpio.h>
  20. #include <linux/pci.h>
  21. #include <linux/platform_device.h>
  22. #include <linux/resource.h>
  23. #include <linux/signal.h>
  24. #include <linux/types.h>
  25. #include "pcie-designware.h"
  26. #define to_exynos_pcie(x) container_of(x, struct exynos_pcie, pp)
  27. struct exynos_pcie {
  28. void __iomem *elbi_base;
  29. void __iomem *phy_base;
  30. void __iomem *block_base;
  31. int reset_gpio;
  32. struct clk *clk;
  33. struct clk *bus_clk;
  34. struct pcie_port pp;
  35. };
  36. /* PCIe ELBI registers */
  37. #define PCIE_IRQ_PULSE 0x000
  38. #define IRQ_INTA_ASSERT (0x1 << 0)
  39. #define IRQ_INTB_ASSERT (0x1 << 2)
  40. #define IRQ_INTC_ASSERT (0x1 << 4)
  41. #define IRQ_INTD_ASSERT (0x1 << 6)
  42. #define PCIE_IRQ_LEVEL 0x004
  43. #define PCIE_IRQ_SPECIAL 0x008
  44. #define PCIE_IRQ_EN_PULSE 0x00c
  45. #define PCIE_IRQ_EN_LEVEL 0x010
  46. #define PCIE_IRQ_EN_SPECIAL 0x014
  47. #define PCIE_PWR_RESET 0x018
  48. #define PCIE_CORE_RESET 0x01c
  49. #define PCIE_CORE_RESET_ENABLE (0x1 << 0)
  50. #define PCIE_STICKY_RESET 0x020
  51. #define PCIE_NONSTICKY_RESET 0x024
  52. #define PCIE_APP_INIT_RESET 0x028
  53. #define PCIE_APP_LTSSM_ENABLE 0x02c
  54. #define PCIE_ELBI_RDLH_LINKUP 0x064
  55. #define PCIE_ELBI_LTSSM_ENABLE 0x1
  56. #define PCIE_ELBI_SLV_AWMISC 0x11c
  57. #define PCIE_ELBI_SLV_ARMISC 0x120
  58. #define PCIE_ELBI_SLV_DBI_ENABLE (0x1 << 21)
  59. /* PCIe Purple registers */
  60. #define PCIE_PHY_GLOBAL_RESET 0x000
  61. #define PCIE_PHY_COMMON_RESET 0x004
  62. #define PCIE_PHY_CMN_REG 0x008
  63. #define PCIE_PHY_MAC_RESET 0x00c
  64. #define PCIE_PHY_PLL_LOCKED 0x010
  65. #define PCIE_PHY_TRSVREG_RESET 0x020
  66. #define PCIE_PHY_TRSV_RESET 0x024
  67. /* PCIe PHY registers */
  68. #define PCIE_PHY_IMPEDANCE 0x004
  69. #define PCIE_PHY_PLL_DIV_0 0x008
  70. #define PCIE_PHY_PLL_BIAS 0x00c
  71. #define PCIE_PHY_DCC_FEEDBACK 0x014
  72. #define PCIE_PHY_PLL_DIV_1 0x05c
  73. #define PCIE_PHY_TRSV0_EMP_LVL 0x084
  74. #define PCIE_PHY_TRSV0_DRV_LVL 0x088
  75. #define PCIE_PHY_TRSV0_RXCDR 0x0ac
  76. #define PCIE_PHY_TRSV0_LVCC 0x0dc
  77. #define PCIE_PHY_TRSV1_EMP_LVL 0x144
  78. #define PCIE_PHY_TRSV1_RXCDR 0x16c
  79. #define PCIE_PHY_TRSV1_LVCC 0x19c
  80. #define PCIE_PHY_TRSV2_EMP_LVL 0x204
  81. #define PCIE_PHY_TRSV2_RXCDR 0x22c
  82. #define PCIE_PHY_TRSV2_LVCC 0x25c
  83. #define PCIE_PHY_TRSV3_EMP_LVL 0x2c4
  84. #define PCIE_PHY_TRSV3_RXCDR 0x2ec
  85. #define PCIE_PHY_TRSV3_LVCC 0x31c
  86. static void exynos_pcie_sideband_dbi_w_mode(struct pcie_port *pp, bool on)
  87. {
  88. u32 val;
  89. struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
  90. if (on) {
  91. val = readl(exynos_pcie->elbi_base + PCIE_ELBI_SLV_AWMISC);
  92. val |= PCIE_ELBI_SLV_DBI_ENABLE;
  93. writel(val, exynos_pcie->elbi_base + PCIE_ELBI_SLV_AWMISC);
  94. } else {
  95. val = readl(exynos_pcie->elbi_base + PCIE_ELBI_SLV_AWMISC);
  96. val &= ~PCIE_ELBI_SLV_DBI_ENABLE;
  97. writel(val, exynos_pcie->elbi_base + PCIE_ELBI_SLV_AWMISC);
  98. }
  99. }
  100. static void exynos_pcie_sideband_dbi_r_mode(struct pcie_port *pp, bool on)
  101. {
  102. u32 val;
  103. struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
  104. if (on) {
  105. val = readl(exynos_pcie->elbi_base + PCIE_ELBI_SLV_ARMISC);
  106. val |= PCIE_ELBI_SLV_DBI_ENABLE;
  107. writel(val, exynos_pcie->elbi_base + PCIE_ELBI_SLV_ARMISC);
  108. } else {
  109. val = readl(exynos_pcie->elbi_base + PCIE_ELBI_SLV_ARMISC);
  110. val &= ~PCIE_ELBI_SLV_DBI_ENABLE;
  111. writel(val, exynos_pcie->elbi_base + PCIE_ELBI_SLV_ARMISC);
  112. }
  113. }
  114. static void exynos_pcie_assert_core_reset(struct pcie_port *pp)
  115. {
  116. u32 val;
  117. struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
  118. void __iomem *elbi_base = exynos_pcie->elbi_base;
  119. val = readl(elbi_base + PCIE_CORE_RESET);
  120. val &= ~PCIE_CORE_RESET_ENABLE;
  121. writel(val, elbi_base + PCIE_CORE_RESET);
  122. writel(0, elbi_base + PCIE_PWR_RESET);
  123. writel(0, elbi_base + PCIE_STICKY_RESET);
  124. writel(0, elbi_base + PCIE_NONSTICKY_RESET);
  125. }
  126. static void exynos_pcie_deassert_core_reset(struct pcie_port *pp)
  127. {
  128. u32 val;
  129. struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
  130. void __iomem *elbi_base = exynos_pcie->elbi_base;
  131. void __iomem *block_base = exynos_pcie->block_base;
  132. val = readl(elbi_base + PCIE_CORE_RESET);
  133. val |= PCIE_CORE_RESET_ENABLE;
  134. writel(val, elbi_base + PCIE_CORE_RESET);
  135. writel(1, elbi_base + PCIE_STICKY_RESET);
  136. writel(1, elbi_base + PCIE_NONSTICKY_RESET);
  137. writel(1, elbi_base + PCIE_APP_INIT_RESET);
  138. writel(0, elbi_base + PCIE_APP_INIT_RESET);
  139. writel(1, block_base + PCIE_PHY_MAC_RESET);
  140. }
  141. static void exynos_pcie_assert_phy_reset(struct pcie_port *pp)
  142. {
  143. struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
  144. void __iomem *block_base = exynos_pcie->block_base;
  145. writel(0, block_base + PCIE_PHY_MAC_RESET);
  146. writel(1, block_base + PCIE_PHY_GLOBAL_RESET);
  147. }
  148. static void exynos_pcie_deassert_phy_reset(struct pcie_port *pp)
  149. {
  150. struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
  151. void __iomem *elbi_base = exynos_pcie->elbi_base;
  152. void __iomem *block_base = exynos_pcie->block_base;
  153. writel(0, block_base + PCIE_PHY_GLOBAL_RESET);
  154. writel(1, elbi_base + PCIE_PWR_RESET);
  155. writel(0, block_base + PCIE_PHY_COMMON_RESET);
  156. writel(0, block_base + PCIE_PHY_CMN_REG);
  157. writel(0, block_base + PCIE_PHY_TRSVREG_RESET);
  158. writel(0, block_base + PCIE_PHY_TRSV_RESET);
  159. }
  160. static void exynos_pcie_init_phy(struct pcie_port *pp)
  161. {
  162. struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
  163. void __iomem *phy_base = exynos_pcie->phy_base;
  164. /* DCC feedback control off */
  165. writel(0x29, phy_base + PCIE_PHY_DCC_FEEDBACK);
  166. /* set TX/RX impedance */
  167. writel(0xd5, phy_base + PCIE_PHY_IMPEDANCE);
  168. /* set 50Mhz PHY clock */
  169. writel(0x14, phy_base + PCIE_PHY_PLL_DIV_0);
  170. writel(0x12, phy_base + PCIE_PHY_PLL_DIV_1);
  171. /* set TX Differential output for lane 0 */
  172. writel(0x7f, phy_base + PCIE_PHY_TRSV0_DRV_LVL);
  173. /* set TX Pre-emphasis Level Control for lane 0 to minimum */
  174. writel(0x0, phy_base + PCIE_PHY_TRSV0_EMP_LVL);
  175. /* set RX clock and data recovery bandwidth */
  176. writel(0xe7, phy_base + PCIE_PHY_PLL_BIAS);
  177. writel(0x82, phy_base + PCIE_PHY_TRSV0_RXCDR);
  178. writel(0x82, phy_base + PCIE_PHY_TRSV1_RXCDR);
  179. writel(0x82, phy_base + PCIE_PHY_TRSV2_RXCDR);
  180. writel(0x82, phy_base + PCIE_PHY_TRSV3_RXCDR);
  181. /* change TX Pre-emphasis Level Control for lanes */
  182. writel(0x39, phy_base + PCIE_PHY_TRSV0_EMP_LVL);
  183. writel(0x39, phy_base + PCIE_PHY_TRSV1_EMP_LVL);
  184. writel(0x39, phy_base + PCIE_PHY_TRSV2_EMP_LVL);
  185. writel(0x39, phy_base + PCIE_PHY_TRSV3_EMP_LVL);
  186. /* set LVCC */
  187. writel(0x20, phy_base + PCIE_PHY_TRSV0_LVCC);
  188. writel(0xa0, phy_base + PCIE_PHY_TRSV1_LVCC);
  189. writel(0xa0, phy_base + PCIE_PHY_TRSV2_LVCC);
  190. writel(0xa0, phy_base + PCIE_PHY_TRSV3_LVCC);
  191. }
  192. static void exynos_pcie_assert_reset(struct pcie_port *pp)
  193. {
  194. struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
  195. if (exynos_pcie->reset_gpio >= 0)
  196. devm_gpio_request_one(pp->dev, exynos_pcie->reset_gpio,
  197. GPIOF_OUT_INIT_HIGH, "RESET");
  198. return;
  199. }
  200. static int exynos_pcie_establish_link(struct pcie_port *pp)
  201. {
  202. u32 val;
  203. int count = 0;
  204. struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
  205. void __iomem *elbi_base = exynos_pcie->elbi_base;
  206. void __iomem *block_base = exynos_pcie->block_base;
  207. void __iomem *phy_base = exynos_pcie->phy_base;
  208. if (dw_pcie_link_up(pp)) {
  209. dev_err(pp->dev, "Link already up\n");
  210. return 0;
  211. }
  212. /* assert reset signals */
  213. exynos_pcie_assert_core_reset(pp);
  214. exynos_pcie_assert_phy_reset(pp);
  215. /* de-assert phy reset */
  216. exynos_pcie_deassert_phy_reset(pp);
  217. /* initialize phy */
  218. exynos_pcie_init_phy(pp);
  219. /* pulse for common reset */
  220. writel(1, block_base + PCIE_PHY_COMMON_RESET);
  221. udelay(500);
  222. writel(0, block_base + PCIE_PHY_COMMON_RESET);
  223. /* de-assert core reset */
  224. exynos_pcie_deassert_core_reset(pp);
  225. /* setup root complex */
  226. dw_pcie_setup_rc(pp);
  227. /* assert reset signal */
  228. exynos_pcie_assert_reset(pp);
  229. /* assert LTSSM enable */
  230. writel(PCIE_ELBI_LTSSM_ENABLE, elbi_base + PCIE_APP_LTSSM_ENABLE);
  231. /* check if the link is up or not */
  232. while (!dw_pcie_link_up(pp)) {
  233. mdelay(100);
  234. count++;
  235. if (count == 10) {
  236. while (readl(phy_base + PCIE_PHY_PLL_LOCKED) == 0) {
  237. val = readl(block_base + PCIE_PHY_PLL_LOCKED);
  238. dev_info(pp->dev, "PLL Locked: 0x%x\n", val);
  239. }
  240. dev_err(pp->dev, "PCIe Link Fail\n");
  241. return -EINVAL;
  242. }
  243. }
  244. dev_info(pp->dev, "Link up\n");
  245. return 0;
  246. }
  247. static void exynos_pcie_clear_irq_pulse(struct pcie_port *pp)
  248. {
  249. u32 val;
  250. struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
  251. void __iomem *elbi_base = exynos_pcie->elbi_base;
  252. val = readl(elbi_base + PCIE_IRQ_PULSE);
  253. writel(val, elbi_base + PCIE_IRQ_PULSE);
  254. return;
  255. }
  256. static void exynos_pcie_enable_irq_pulse(struct pcie_port *pp)
  257. {
  258. u32 val;
  259. struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
  260. void __iomem *elbi_base = exynos_pcie->elbi_base;
  261. /* enable INTX interrupt */
  262. val = IRQ_INTA_ASSERT | IRQ_INTB_ASSERT |
  263. IRQ_INTC_ASSERT | IRQ_INTD_ASSERT,
  264. writel(val, elbi_base + PCIE_IRQ_EN_PULSE);
  265. return;
  266. }
  267. static irqreturn_t exynos_pcie_irq_handler(int irq, void *arg)
  268. {
  269. struct pcie_port *pp = arg;
  270. exynos_pcie_clear_irq_pulse(pp);
  271. return IRQ_HANDLED;
  272. }
  273. static void exynos_pcie_enable_interrupts(struct pcie_port *pp)
  274. {
  275. exynos_pcie_enable_irq_pulse(pp);
  276. return;
  277. }
  278. static inline void exynos_pcie_readl_rc(struct pcie_port *pp,
  279. void __iomem *dbi_base, u32 *val)
  280. {
  281. exynos_pcie_sideband_dbi_r_mode(pp, true);
  282. *val = readl(dbi_base);
  283. exynos_pcie_sideband_dbi_r_mode(pp, false);
  284. return;
  285. }
  286. static inline void exynos_pcie_writel_rc(struct pcie_port *pp,
  287. u32 val, void __iomem *dbi_base)
  288. {
  289. exynos_pcie_sideband_dbi_w_mode(pp, true);
  290. writel(val, dbi_base);
  291. exynos_pcie_sideband_dbi_w_mode(pp, false);
  292. return;
  293. }
  294. static int exynos_pcie_rd_own_conf(struct pcie_port *pp, int where, int size,
  295. u32 *val)
  296. {
  297. int ret;
  298. exynos_pcie_sideband_dbi_r_mode(pp, true);
  299. ret = cfg_read(pp->dbi_base + (where & ~0x3), where, size, val);
  300. exynos_pcie_sideband_dbi_r_mode(pp, false);
  301. return ret;
  302. }
  303. static int exynos_pcie_wr_own_conf(struct pcie_port *pp, int where, int size,
  304. u32 val)
  305. {
  306. int ret;
  307. exynos_pcie_sideband_dbi_w_mode(pp, true);
  308. ret = cfg_write(pp->dbi_base + (where & ~0x3), where, size, val);
  309. exynos_pcie_sideband_dbi_w_mode(pp, false);
  310. return ret;
  311. }
  312. static int exynos_pcie_link_up(struct pcie_port *pp)
  313. {
  314. struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
  315. u32 val = readl(exynos_pcie->elbi_base + PCIE_ELBI_RDLH_LINKUP);
  316. if (val == PCIE_ELBI_LTSSM_ENABLE)
  317. return 1;
  318. return 0;
  319. }
  320. static void exynos_pcie_host_init(struct pcie_port *pp)
  321. {
  322. exynos_pcie_establish_link(pp);
  323. exynos_pcie_enable_interrupts(pp);
  324. }
  325. static struct pcie_host_ops exynos_pcie_host_ops = {
  326. .readl_rc = exynos_pcie_readl_rc,
  327. .writel_rc = exynos_pcie_writel_rc,
  328. .rd_own_conf = exynos_pcie_rd_own_conf,
  329. .wr_own_conf = exynos_pcie_wr_own_conf,
  330. .link_up = exynos_pcie_link_up,
  331. .host_init = exynos_pcie_host_init,
  332. };
  333. static int add_pcie_port(struct pcie_port *pp, struct platform_device *pdev)
  334. {
  335. int ret;
  336. pp->irq = platform_get_irq(pdev, 1);
  337. if (!pp->irq) {
  338. dev_err(&pdev->dev, "failed to get irq\n");
  339. return -ENODEV;
  340. }
  341. ret = devm_request_irq(&pdev->dev, pp->irq, exynos_pcie_irq_handler,
  342. IRQF_SHARED, "exynos-pcie", pp);
  343. if (ret) {
  344. dev_err(&pdev->dev, "failed to request irq\n");
  345. return ret;
  346. }
  347. pp->root_bus_nr = -1;
  348. pp->ops = &exynos_pcie_host_ops;
  349. spin_lock_init(&pp->conf_lock);
  350. ret = dw_pcie_host_init(pp);
  351. if (ret) {
  352. dev_err(&pdev->dev, "failed to initialize host\n");
  353. return ret;
  354. }
  355. return 0;
  356. }
  357. static int __init exynos_pcie_probe(struct platform_device *pdev)
  358. {
  359. struct exynos_pcie *exynos_pcie;
  360. struct pcie_port *pp;
  361. struct device_node *np = pdev->dev.of_node;
  362. struct resource *elbi_base;
  363. struct resource *phy_base;
  364. struct resource *block_base;
  365. int ret;
  366. exynos_pcie = devm_kzalloc(&pdev->dev, sizeof(*exynos_pcie),
  367. GFP_KERNEL);
  368. if (!exynos_pcie) {
  369. dev_err(&pdev->dev, "no memory for exynos pcie\n");
  370. return -ENOMEM;
  371. }
  372. pp = &exynos_pcie->pp;
  373. pp->dev = &pdev->dev;
  374. exynos_pcie->reset_gpio = of_get_named_gpio(np, "reset-gpio", 0);
  375. exynos_pcie->clk = devm_clk_get(&pdev->dev, "pcie");
  376. if (IS_ERR(exynos_pcie->clk)) {
  377. dev_err(&pdev->dev, "Failed to get pcie rc clock\n");
  378. return PTR_ERR(exynos_pcie->clk);
  379. }
  380. ret = clk_prepare_enable(exynos_pcie->clk);
  381. if (ret)
  382. return ret;
  383. exynos_pcie->bus_clk = devm_clk_get(&pdev->dev, "pcie_bus");
  384. if (IS_ERR(exynos_pcie->bus_clk)) {
  385. dev_err(&pdev->dev, "Failed to get pcie bus clock\n");
  386. ret = PTR_ERR(exynos_pcie->bus_clk);
  387. goto fail_clk;
  388. }
  389. ret = clk_prepare_enable(exynos_pcie->bus_clk);
  390. if (ret)
  391. goto fail_clk;
  392. elbi_base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  393. exynos_pcie->elbi_base = devm_ioremap_resource(&pdev->dev, elbi_base);
  394. if (IS_ERR(exynos_pcie->elbi_base))
  395. return PTR_ERR(exynos_pcie->elbi_base);
  396. phy_base = platform_get_resource(pdev, IORESOURCE_MEM, 1);
  397. exynos_pcie->phy_base = devm_ioremap_resource(&pdev->dev, phy_base);
  398. if (IS_ERR(exynos_pcie->phy_base))
  399. return PTR_ERR(exynos_pcie->phy_base);
  400. block_base = platform_get_resource(pdev, IORESOURCE_MEM, 2);
  401. exynos_pcie->block_base = devm_ioremap_resource(&pdev->dev, block_base);
  402. if (IS_ERR(exynos_pcie->block_base))
  403. return PTR_ERR(exynos_pcie->block_base);
  404. ret = add_pcie_port(pp, pdev);
  405. if (ret < 0)
  406. goto fail_bus_clk;
  407. platform_set_drvdata(pdev, exynos_pcie);
  408. return 0;
  409. fail_bus_clk:
  410. clk_disable_unprepare(exynos_pcie->bus_clk);
  411. fail_clk:
  412. clk_disable_unprepare(exynos_pcie->clk);
  413. return ret;
  414. }
  415. static int __exit exynos_pcie_remove(struct platform_device *pdev)
  416. {
  417. struct exynos_pcie *exynos_pcie = platform_get_drvdata(pdev);
  418. clk_disable_unprepare(exynos_pcie->bus_clk);
  419. clk_disable_unprepare(exynos_pcie->clk);
  420. return 0;
  421. }
  422. static const struct of_device_id exynos_pcie_of_match[] = {
  423. { .compatible = "samsung,exynos5440-pcie", },
  424. {},
  425. };
  426. MODULE_DEVICE_TABLE(of, exynos_pcie_of_match);
  427. static struct platform_driver exynos_pcie_driver = {
  428. .remove = __exit_p(exynos_pcie_remove),
  429. .driver = {
  430. .name = "exynos-pcie",
  431. .owner = THIS_MODULE,
  432. .of_match_table = of_match_ptr(exynos_pcie_of_match),
  433. },
  434. };
  435. /* Exynos PCIe driver does not allow module unload */
  436. static int __init pcie_init(void)
  437. {
  438. return platform_driver_probe(&exynos_pcie_driver, exynos_pcie_probe);
  439. }
  440. subsys_initcall(pcie_init);
  441. MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
  442. MODULE_DESCRIPTION("Samsung PCIe host controller driver");
  443. MODULE_LICENSE("GPL v2");