Florian Fainelli | e090d50 | 2010-03-21 01:06:05 +0100 | [diff] [blame] | 1 | /* |
Masanari Iida | 5a4432b | 2012-08-13 21:00:25 +0900 | [diff] [blame] | 2 | * RDC321x MFD southbridge driver |
Florian Fainelli | e090d50 | 2010-03-21 01:06:05 +0100 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2007-2010 Florian Fainelli <florian@openwrt.org> |
| 5 | * Copyright (C) 2010 Bernhard Loos <bernhardloos@googlemail.com> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 20 | * |
| 21 | */ |
Florian Fainelli | e090d50 | 2010-03-21 01:06:05 +0100 | [diff] [blame] | 22 | #include <linux/module.h> |
| 23 | #include <linux/kernel.h> |
| 24 | #include <linux/platform_device.h> |
| 25 | #include <linux/pci.h> |
| 26 | #include <linux/mfd/core.h> |
| 27 | #include <linux/mfd/rdc321x.h> |
| 28 | |
| 29 | static struct rdc321x_wdt_pdata rdc321x_wdt_pdata; |
| 30 | |
| 31 | static struct resource rdc321x_wdt_resource[] = { |
| 32 | { |
| 33 | .name = "wdt-reg", |
| 34 | .start = RDC321X_WDT_CTRL, |
| 35 | .end = RDC321X_WDT_CTRL + 0x3, |
Florian Fainelli | 8deca39e | 2010-05-15 22:58:27 +0200 | [diff] [blame] | 36 | .flags = IORESOURCE_IO, |
Florian Fainelli | e090d50 | 2010-03-21 01:06:05 +0100 | [diff] [blame] | 37 | } |
| 38 | }; |
| 39 | |
| 40 | static struct rdc321x_gpio_pdata rdc321x_gpio_pdata = { |
Axel Lin | 1ec93b9 | 2014-04-25 09:24:21 +0800 | [diff] [blame] | 41 | .max_gpios = RDC321X_NUM_GPIO, |
Florian Fainelli | e090d50 | 2010-03-21 01:06:05 +0100 | [diff] [blame] | 42 | }; |
| 43 | |
| 44 | static struct resource rdc321x_gpio_resources[] = { |
| 45 | { |
| 46 | .name = "gpio-reg1", |
| 47 | .start = RDC321X_GPIO_CTRL_REG1, |
| 48 | .end = RDC321X_GPIO_CTRL_REG1 + 0x7, |
Florian Fainelli | 8deca39e | 2010-05-15 22:58:27 +0200 | [diff] [blame] | 49 | .flags = IORESOURCE_IO, |
Florian Fainelli | e090d50 | 2010-03-21 01:06:05 +0100 | [diff] [blame] | 50 | }, { |
| 51 | .name = "gpio-reg2", |
| 52 | .start = RDC321X_GPIO_CTRL_REG2, |
| 53 | .end = RDC321X_GPIO_CTRL_REG2 + 0x7, |
Florian Fainelli | 8deca39e | 2010-05-15 22:58:27 +0200 | [diff] [blame] | 54 | .flags = IORESOURCE_IO, |
Florian Fainelli | e090d50 | 2010-03-21 01:06:05 +0100 | [diff] [blame] | 55 | } |
| 56 | }; |
| 57 | |
Geert Uytterhoeven | 5ac9855 | 2013-11-18 14:33:06 +0100 | [diff] [blame] | 58 | static const struct mfd_cell rdc321x_sb_cells[] = { |
Florian Fainelli | e090d50 | 2010-03-21 01:06:05 +0100 | [diff] [blame] | 59 | { |
| 60 | .name = "rdc321x-wdt", |
| 61 | .resources = rdc321x_wdt_resource, |
| 62 | .num_resources = ARRAY_SIZE(rdc321x_wdt_resource), |
Samuel Ortiz | 9abd768 | 2011-04-06 13:21:01 +0200 | [diff] [blame] | 63 | .platform_data = &rdc321x_wdt_pdata, |
| 64 | .pdata_size = sizeof(rdc321x_wdt_pdata), |
Florian Fainelli | e090d50 | 2010-03-21 01:06:05 +0100 | [diff] [blame] | 65 | }, { |
| 66 | .name = "rdc321x-gpio", |
| 67 | .resources = rdc321x_gpio_resources, |
| 68 | .num_resources = ARRAY_SIZE(rdc321x_gpio_resources), |
Samuel Ortiz | 9abd768 | 2011-04-06 13:21:01 +0200 | [diff] [blame] | 69 | .platform_data = &rdc321x_gpio_pdata, |
| 70 | .pdata_size = sizeof(rdc321x_gpio_pdata), |
Florian Fainelli | e090d50 | 2010-03-21 01:06:05 +0100 | [diff] [blame] | 71 | }, |
| 72 | }; |
| 73 | |
Bill Pemberton | f791be4 | 2012-11-19 13:23:04 -0500 | [diff] [blame] | 74 | static int rdc321x_sb_probe(struct pci_dev *pdev, |
Florian Fainelli | e090d50 | 2010-03-21 01:06:05 +0100 | [diff] [blame] | 75 | const struct pci_device_id *ent) |
| 76 | { |
| 77 | int err; |
| 78 | |
| 79 | err = pci_enable_device(pdev); |
| 80 | if (err) { |
| 81 | dev_err(&pdev->dev, "failed to enable device\n"); |
| 82 | return err; |
| 83 | } |
| 84 | |
| 85 | rdc321x_gpio_pdata.sb_pdev = pdev; |
| 86 | rdc321x_wdt_pdata.sb_pdev = pdev; |
| 87 | |
| 88 | return mfd_add_devices(&pdev->dev, -1, |
Mark Brown | 0848c94 | 2012-09-11 15:16:36 +0800 | [diff] [blame] | 89 | rdc321x_sb_cells, ARRAY_SIZE(rdc321x_sb_cells), |
| 90 | NULL, 0, NULL); |
Florian Fainelli | e090d50 | 2010-03-21 01:06:05 +0100 | [diff] [blame] | 91 | } |
| 92 | |
Bill Pemberton | 4740f73 | 2012-11-19 13:26:01 -0500 | [diff] [blame] | 93 | static void rdc321x_sb_remove(struct pci_dev *pdev) |
Florian Fainelli | e090d50 | 2010-03-21 01:06:05 +0100 | [diff] [blame] | 94 | { |
| 95 | mfd_remove_devices(&pdev->dev); |
| 96 | } |
| 97 | |
Jingoo Han | 36fcd06 | 2013-12-03 08:15:39 +0900 | [diff] [blame] | 98 | static const struct pci_device_id rdc321x_sb_table[] = { |
Florian Fainelli | e090d50 | 2010-03-21 01:06:05 +0100 | [diff] [blame] | 99 | { PCI_DEVICE(PCI_VENDOR_ID_RDC, PCI_DEVICE_ID_RDC_R6030) }, |
| 100 | {} |
| 101 | }; |
Axel Lin | 8537548 | 2011-03-24 15:04:53 +0800 | [diff] [blame] | 102 | MODULE_DEVICE_TABLE(pci, rdc321x_sb_table); |
Florian Fainelli | e090d50 | 2010-03-21 01:06:05 +0100 | [diff] [blame] | 103 | |
| 104 | static struct pci_driver rdc321x_sb_driver = { |
| 105 | .name = "RDC321x Southbridge", |
| 106 | .id_table = rdc321x_sb_table, |
| 107 | .probe = rdc321x_sb_probe, |
Bill Pemberton | 8444921 | 2012-11-19 13:20:24 -0500 | [diff] [blame] | 108 | .remove = rdc321x_sb_remove, |
Florian Fainelli | e090d50 | 2010-03-21 01:06:05 +0100 | [diff] [blame] | 109 | }; |
| 110 | |
Axel Lin | 38a36f5 | 2012-04-03 09:09:19 +0800 | [diff] [blame] | 111 | module_pci_driver(rdc321x_sb_driver); |
Florian Fainelli | e090d50 | 2010-03-21 01:06:05 +0100 | [diff] [blame] | 112 | |
| 113 | MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>"); |
| 114 | MODULE_LICENSE("GPL"); |
| 115 | MODULE_DESCRIPTION("RDC R-321x MFD southbridge driver"); |