Andy Shevchenko | 4b45efe | 2015-07-27 18:04:03 +0300 | [diff] [blame] | 1 | /* |
| 2 | * Intel LPSS PCI support. |
| 3 | * |
| 4 | * Copyright (C) 2015, Intel Corporation |
| 5 | * |
| 6 | * Authors: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
| 7 | * Mika Westerberg <mika.westerberg@linux.intel.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 | |
| 14 | #include <linux/ioport.h> |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/pci.h> |
| 18 | #include <linux/pm.h> |
| 19 | #include <linux/pm_runtime.h> |
Mika Westerberg | 028af59 | 2015-11-30 17:11:42 +0200 | [diff] [blame] | 20 | #include <linux/property.h> |
Andy Shevchenko | 4b45efe | 2015-07-27 18:04:03 +0300 | [diff] [blame] | 21 | |
| 22 | #include "intel-lpss.h" |
| 23 | |
| 24 | static int intel_lpss_pci_probe(struct pci_dev *pdev, |
| 25 | const struct pci_device_id *id) |
| 26 | { |
| 27 | struct intel_lpss_platform_info *info; |
| 28 | int ret; |
| 29 | |
| 30 | ret = pcim_enable_device(pdev); |
| 31 | if (ret) |
| 32 | return ret; |
| 33 | |
| 34 | info = devm_kmemdup(&pdev->dev, (void *)id->driver_data, sizeof(*info), |
| 35 | GFP_KERNEL); |
| 36 | if (!info) |
| 37 | return -ENOMEM; |
| 38 | |
| 39 | info->mem = &pdev->resource[0]; |
| 40 | info->irq = pdev->irq; |
| 41 | |
| 42 | /* Probably it is enough to set this for iDMA capable devices only */ |
| 43 | pci_set_master(pdev); |
| 44 | |
| 45 | ret = intel_lpss_probe(&pdev->dev, info); |
| 46 | if (ret) |
| 47 | return ret; |
| 48 | |
| 49 | pm_runtime_put(&pdev->dev); |
| 50 | pm_runtime_allow(&pdev->dev); |
| 51 | |
| 52 | return 0; |
| 53 | } |
| 54 | |
| 55 | static void intel_lpss_pci_remove(struct pci_dev *pdev) |
| 56 | { |
| 57 | pm_runtime_forbid(&pdev->dev); |
| 58 | pm_runtime_get_sync(&pdev->dev); |
| 59 | |
| 60 | intel_lpss_remove(&pdev->dev); |
| 61 | } |
| 62 | |
| 63 | static INTEL_LPSS_PM_OPS(intel_lpss_pci_pm_ops); |
| 64 | |
| 65 | static const struct intel_lpss_platform_info spt_info = { |
| 66 | .clk_rate = 120000000, |
| 67 | }; |
| 68 | |
Mika Westerberg | 028af59 | 2015-11-30 17:11:42 +0200 | [diff] [blame] | 69 | static struct property_entry spt_i2c_properties[] = { |
| 70 | PROPERTY_ENTRY_U32("i2c-sda-hold-time-ns", 230), |
| 71 | { }, |
| 72 | }; |
| 73 | |
| 74 | static struct property_set spt_i2c_pset = { |
| 75 | .properties = spt_i2c_properties, |
| 76 | }; |
| 77 | |
| 78 | static const struct intel_lpss_platform_info spt_i2c_info = { |
| 79 | .clk_rate = 120000000, |
| 80 | .pset = &spt_i2c_pset, |
| 81 | }; |
| 82 | |
Andy Shevchenko | ec14c53 | 2015-11-30 17:11:43 +0200 | [diff] [blame] | 83 | static struct property_entry uart_properties[] = { |
| 84 | PROPERTY_ENTRY_U32("reg-io-width", 4), |
| 85 | PROPERTY_ENTRY_U32("reg-shift", 2), |
| 86 | PROPERTY_ENTRY_BOOL("snps,uart-16550-compatible"), |
| 87 | { }, |
| 88 | }; |
| 89 | |
| 90 | static struct property_set uart_pset = { |
| 91 | .properties = uart_properties, |
| 92 | }; |
| 93 | |
Andy Shevchenko | 4b45efe | 2015-07-27 18:04:03 +0300 | [diff] [blame] | 94 | static const struct intel_lpss_platform_info spt_uart_info = { |
| 95 | .clk_rate = 120000000, |
| 96 | .clk_con_id = "baudclk", |
Andy Shevchenko | ec14c53 | 2015-11-30 17:11:43 +0200 | [diff] [blame] | 97 | .pset = &uart_pset, |
Andy Shevchenko | 4b45efe | 2015-07-27 18:04:03 +0300 | [diff] [blame] | 98 | }; |
| 99 | |
Andy Shevchenko | ff0a04a | 2015-10-21 12:41:48 +0300 | [diff] [blame] | 100 | static const struct intel_lpss_platform_info bxt_info = { |
| 101 | .clk_rate = 100000000, |
| 102 | }; |
| 103 | |
| 104 | static const struct intel_lpss_platform_info bxt_uart_info = { |
| 105 | .clk_rate = 100000000, |
| 106 | .clk_con_id = "baudclk", |
Andy Shevchenko | ec14c53 | 2015-11-30 17:11:43 +0200 | [diff] [blame] | 107 | .pset = &uart_pset, |
Andy Shevchenko | ff0a04a | 2015-10-21 12:41:48 +0300 | [diff] [blame] | 108 | }; |
| 109 | |
| 110 | static const struct intel_lpss_platform_info bxt_i2c_info = { |
| 111 | .clk_rate = 133000000, |
| 112 | }; |
| 113 | |
Andy Shevchenko | 4b45efe | 2015-07-27 18:04:03 +0300 | [diff] [blame] | 114 | static const struct pci_device_id intel_lpss_pci_ids[] = { |
Andy Shevchenko | ff0a04a | 2015-10-21 12:41:48 +0300 | [diff] [blame] | 115 | /* BXT */ |
| 116 | { PCI_VDEVICE(INTEL, 0x0aac), (kernel_ulong_t)&bxt_i2c_info }, |
| 117 | { PCI_VDEVICE(INTEL, 0x0aae), (kernel_ulong_t)&bxt_i2c_info }, |
| 118 | { PCI_VDEVICE(INTEL, 0x0ab0), (kernel_ulong_t)&bxt_i2c_info }, |
| 119 | { PCI_VDEVICE(INTEL, 0x0ab2), (kernel_ulong_t)&bxt_i2c_info }, |
| 120 | { PCI_VDEVICE(INTEL, 0x0ab4), (kernel_ulong_t)&bxt_i2c_info }, |
| 121 | { PCI_VDEVICE(INTEL, 0x0ab6), (kernel_ulong_t)&bxt_i2c_info }, |
| 122 | { PCI_VDEVICE(INTEL, 0x0ab8), (kernel_ulong_t)&bxt_i2c_info }, |
| 123 | { PCI_VDEVICE(INTEL, 0x0aba), (kernel_ulong_t)&bxt_i2c_info }, |
| 124 | { PCI_VDEVICE(INTEL, 0x0abc), (kernel_ulong_t)&bxt_uart_info }, |
| 125 | { PCI_VDEVICE(INTEL, 0x0abe), (kernel_ulong_t)&bxt_uart_info }, |
| 126 | { PCI_VDEVICE(INTEL, 0x0ac0), (kernel_ulong_t)&bxt_uart_info }, |
| 127 | { PCI_VDEVICE(INTEL, 0x0ac2), (kernel_ulong_t)&bxt_info }, |
| 128 | { PCI_VDEVICE(INTEL, 0x0ac4), (kernel_ulong_t)&bxt_info }, |
| 129 | { PCI_VDEVICE(INTEL, 0x0ac6), (kernel_ulong_t)&bxt_info }, |
| 130 | { PCI_VDEVICE(INTEL, 0x0aee), (kernel_ulong_t)&bxt_uart_info }, |
| 131 | /* APL */ |
| 132 | { PCI_VDEVICE(INTEL, 0x5aac), (kernel_ulong_t)&bxt_i2c_info }, |
| 133 | { PCI_VDEVICE(INTEL, 0x5aae), (kernel_ulong_t)&bxt_i2c_info }, |
| 134 | { PCI_VDEVICE(INTEL, 0x5ab0), (kernel_ulong_t)&bxt_i2c_info }, |
| 135 | { PCI_VDEVICE(INTEL, 0x5ab2), (kernel_ulong_t)&bxt_i2c_info }, |
| 136 | { PCI_VDEVICE(INTEL, 0x5ab4), (kernel_ulong_t)&bxt_i2c_info }, |
| 137 | { PCI_VDEVICE(INTEL, 0x5ab6), (kernel_ulong_t)&bxt_i2c_info }, |
| 138 | { PCI_VDEVICE(INTEL, 0x5ab8), (kernel_ulong_t)&bxt_i2c_info }, |
| 139 | { PCI_VDEVICE(INTEL, 0x5aba), (kernel_ulong_t)&bxt_i2c_info }, |
| 140 | { PCI_VDEVICE(INTEL, 0x5abc), (kernel_ulong_t)&bxt_uart_info }, |
| 141 | { PCI_VDEVICE(INTEL, 0x5abe), (kernel_ulong_t)&bxt_uart_info }, |
| 142 | { PCI_VDEVICE(INTEL, 0x5ac0), (kernel_ulong_t)&bxt_uart_info }, |
| 143 | { PCI_VDEVICE(INTEL, 0x5ac2), (kernel_ulong_t)&bxt_info }, |
| 144 | { PCI_VDEVICE(INTEL, 0x5ac4), (kernel_ulong_t)&bxt_info }, |
| 145 | { PCI_VDEVICE(INTEL, 0x5ac6), (kernel_ulong_t)&bxt_info }, |
| 146 | { PCI_VDEVICE(INTEL, 0x5aee), (kernel_ulong_t)&bxt_uart_info }, |
Andy Shevchenko | 4b45efe | 2015-07-27 18:04:03 +0300 | [diff] [blame] | 147 | /* SPT-LP */ |
| 148 | { PCI_VDEVICE(INTEL, 0x9d27), (kernel_ulong_t)&spt_uart_info }, |
| 149 | { PCI_VDEVICE(INTEL, 0x9d28), (kernel_ulong_t)&spt_uart_info }, |
| 150 | { PCI_VDEVICE(INTEL, 0x9d29), (kernel_ulong_t)&spt_info }, |
| 151 | { PCI_VDEVICE(INTEL, 0x9d2a), (kernel_ulong_t)&spt_info }, |
Mika Westerberg | 028af59 | 2015-11-30 17:11:42 +0200 | [diff] [blame] | 152 | { PCI_VDEVICE(INTEL, 0x9d60), (kernel_ulong_t)&spt_i2c_info }, |
| 153 | { PCI_VDEVICE(INTEL, 0x9d61), (kernel_ulong_t)&spt_i2c_info }, |
| 154 | { PCI_VDEVICE(INTEL, 0x9d62), (kernel_ulong_t)&spt_i2c_info }, |
| 155 | { PCI_VDEVICE(INTEL, 0x9d63), (kernel_ulong_t)&spt_i2c_info }, |
| 156 | { PCI_VDEVICE(INTEL, 0x9d64), (kernel_ulong_t)&spt_i2c_info }, |
| 157 | { PCI_VDEVICE(INTEL, 0x9d65), (kernel_ulong_t)&spt_i2c_info }, |
Andy Shevchenko | 4b45efe | 2015-07-27 18:04:03 +0300 | [diff] [blame] | 158 | { PCI_VDEVICE(INTEL, 0x9d66), (kernel_ulong_t)&spt_uart_info }, |
| 159 | /* SPT-H */ |
| 160 | { PCI_VDEVICE(INTEL, 0xa127), (kernel_ulong_t)&spt_uart_info }, |
| 161 | { PCI_VDEVICE(INTEL, 0xa128), (kernel_ulong_t)&spt_uart_info }, |
| 162 | { PCI_VDEVICE(INTEL, 0xa129), (kernel_ulong_t)&spt_info }, |
| 163 | { PCI_VDEVICE(INTEL, 0xa12a), (kernel_ulong_t)&spt_info }, |
Mika Westerberg | 028af59 | 2015-11-30 17:11:42 +0200 | [diff] [blame] | 164 | { PCI_VDEVICE(INTEL, 0xa160), (kernel_ulong_t)&spt_i2c_info }, |
| 165 | { PCI_VDEVICE(INTEL, 0xa161), (kernel_ulong_t)&spt_i2c_info }, |
Andy Shevchenko | 4b45efe | 2015-07-27 18:04:03 +0300 | [diff] [blame] | 166 | { PCI_VDEVICE(INTEL, 0xa166), (kernel_ulong_t)&spt_uart_info }, |
| 167 | { } |
| 168 | }; |
| 169 | MODULE_DEVICE_TABLE(pci, intel_lpss_pci_ids); |
| 170 | |
| 171 | static struct pci_driver intel_lpss_pci_driver = { |
| 172 | .name = "intel-lpss", |
| 173 | .id_table = intel_lpss_pci_ids, |
| 174 | .probe = intel_lpss_pci_probe, |
| 175 | .remove = intel_lpss_pci_remove, |
| 176 | .driver = { |
| 177 | .pm = &intel_lpss_pci_pm_ops, |
| 178 | }, |
| 179 | }; |
| 180 | |
| 181 | module_pci_driver(intel_lpss_pci_driver); |
| 182 | |
| 183 | MODULE_AUTHOR("Andy Shevchenko <andriy.shevchenko@linux.intel.com>"); |
| 184 | MODULE_AUTHOR("Mika Westerberg <mika.westerberg@linux.intel.com>"); |
| 185 | MODULE_DESCRIPTION("Intel LPSS PCI driver"); |
| 186 | MODULE_LICENSE("GPL v2"); |