blob: d0fb2e52ee76a82ab18f668f41b10ac3f4e01ed3 [file] [log] [blame]
Thomas Gleixner82c29812019-05-28 09:57:05 -07001// SPDX-License-Identifier: GPL-2.0-only
Andres Salomonf71e1af2010-11-26 11:52:35 +01002/*
3 * cs5535-mfd.c - core MFD driver for CS5535/CS5536 southbridges
4 *
5 * The CS5535 and CS5536 has an ISA bridge on the PCI bus that is
6 * used for accessing GPIOs, MFGPTs, ACPI, etc. Each subdevice has
7 * an IO range that's specified in a single BAR. The BAR order is
8 * hardcoded in the CS553x specifications.
9 *
10 * Copyright (c) 2010 Andres Salomon <dilinger@queued.net>
Andres Salomonf71e1af2010-11-26 11:52:35 +010011 */
12
13#include <linux/kernel.h>
Andres Salomonf71e1af2010-11-26 11:52:35 +010014#include <linux/mfd/core.h>
15#include <linux/module.h>
16#include <linux/pci.h>
Andres Salomonfa1df692011-03-21 19:19:35 -070017#include <asm/olpc.h>
Andres Salomonf71e1af2010-11-26 11:52:35 +010018
19#define DRV_NAME "cs5535-mfd"
20
21enum cs5535_mfd_bars {
22 SMB_BAR = 0,
23 GPIO_BAR = 1,
24 MFGPT_BAR = 2,
25 PMS_BAR = 4,
26 ACPI_BAR = 5,
27 NR_BARS,
28};
29
Bill Pembertona9e9ce42012-11-19 13:24:21 -050030static struct resource cs5535_mfd_resources[NR_BARS];
Andres Salomonf71e1af2010-11-26 11:52:35 +010031
Bill Pembertona9e9ce42012-11-19 13:24:21 -050032static struct mfd_cell cs5535_mfd_cells[] = {
Andres Salomonf71e1af2010-11-26 11:52:35 +010033 {
Andres Salomonf71e1af2010-11-26 11:52:35 +010034 .name = "cs5535-smb",
35 .num_resources = 1,
36 .resources = &cs5535_mfd_resources[SMB_BAR],
37 },
38 {
Andres Salomonf71e1af2010-11-26 11:52:35 +010039 .name = "cs5535-gpio",
40 .num_resources = 1,
41 .resources = &cs5535_mfd_resources[GPIO_BAR],
42 },
43 {
Andres Salomonf71e1af2010-11-26 11:52:35 +010044 .name = "cs5535-mfgpt",
45 .num_resources = 1,
46 .resources = &cs5535_mfd_resources[MFGPT_BAR],
47 },
48 {
Andres Salomonf71e1af2010-11-26 11:52:35 +010049 .name = "cs5535-pms",
50 .num_resources = 1,
51 .resources = &cs5535_mfd_resources[PMS_BAR],
52 },
Lee Jones99cd1052019-10-18 11:36:44 +010053};
54
55static struct mfd_cell cs5535_olpc_mfd_cells[] = {
Andres Salomonf71e1af2010-11-26 11:52:35 +010056 {
Lee Jones99cd1052019-10-18 11:36:44 +010057 .name = "olpc-xo1-pm-acpi",
Andres Salomonf71e1af2010-11-26 11:52:35 +010058 .num_resources = 1,
59 .resources = &cs5535_mfd_resources[ACPI_BAR],
60 },
Lee Jones99cd1052019-10-18 11:36:44 +010061 {
62 .name = "olpc-xo1-sci-acpi",
63 .num_resources = 1,
64 .resources = &cs5535_mfd_resources[ACPI_BAR],
65 },
Lubomir Rintelfd54d652019-06-20 13:19:57 +020066};
Andres Salomonfa1df692011-03-21 19:19:35 -070067
Bill Pembertonf791be42012-11-19 13:23:04 -050068static int cs5535_mfd_probe(struct pci_dev *pdev,
Andres Salomonf71e1af2010-11-26 11:52:35 +010069 const struct pci_device_id *id)
70{
Lee Jones2129e562019-10-18 10:23:49 +010071 int err, bar;
Andres Salomonf71e1af2010-11-26 11:52:35 +010072
73 err = pci_enable_device(pdev);
74 if (err)
75 return err;
76
Lee Jones2129e562019-10-18 10:23:49 +010077 for (bar = 0; bar < NR_BARS; bar++) {
Andres Salomonf71e1af2010-11-26 11:52:35 +010078 struct resource *r = &cs5535_mfd_resources[bar];
79
80 r->flags = IORESOURCE_IO;
81 r->start = pci_resource_start(pdev, bar);
82 r->end = pci_resource_end(pdev, bar);
Andres Salomonf71e1af2010-11-26 11:52:35 +010083 }
84
Lee Jones2d4ba912019-10-21 08:49:49 +010085 err = pci_request_region(pdev, PMS_BAR, DRV_NAME);
86 if (err) {
87 dev_err(&pdev->dev, "Failed to request PMS_BAR's IO region\n");
88 goto err_disable;
89 }
90
Lee Jones601e4282019-10-18 10:09:24 +010091 err = mfd_add_devices(&pdev->dev, PLATFORM_DEVID_NONE, cs5535_mfd_cells,
Mark Brown0848c942012-09-11 15:16:36 +080092 ARRAY_SIZE(cs5535_mfd_cells), NULL, 0, NULL);
Andres Salomonf71e1af2010-11-26 11:52:35 +010093 if (err) {
Lee Jones601e4282019-10-18 10:09:24 +010094 dev_err(&pdev->dev,
95 "Failed to add CS5535 sub-devices: %d\n", err);
Lee Jones2d4ba912019-10-21 08:49:49 +010096 goto err_release_pms;
Andres Salomonf71e1af2010-11-26 11:52:35 +010097 }
Lubomir Rintelfd54d652019-06-20 13:19:57 +020098
Lee Jones2d4ba912019-10-21 08:49:49 +010099 if (machine_is_olpc()) {
100 err = pci_request_region(pdev, ACPI_BAR, DRV_NAME);
101 if (err) {
102 dev_err(&pdev->dev,
103 "Failed to request ACPI_BAR's IO region\n");
104 goto err_remove_devices;
105 }
106
Lee Jones99cd1052019-10-18 11:36:44 +0100107 err = mfd_add_devices(&pdev->dev, PLATFORM_DEVID_NONE,
108 cs5535_olpc_mfd_cells,
109 ARRAY_SIZE(cs5535_olpc_mfd_cells),
110 NULL, 0, NULL);
Lee Jones2d4ba912019-10-21 08:49:49 +0100111 if (err) {
Lee Jones99cd1052019-10-18 11:36:44 +0100112 dev_err(&pdev->dev,
113 "Failed to add CS5535 OLPC sub-devices: %d\n",
114 err);
Lee Jones2d4ba912019-10-21 08:49:49 +0100115 goto err_release_acpi;
116 }
117 }
Andres Salomonf71e1af2010-11-26 11:52:35 +0100118
Andres Salomon816b4582010-11-30 13:54:39 -0800119 dev_info(&pdev->dev, "%zu devices registered.\n",
Andres Salomonf71e1af2010-11-26 11:52:35 +0100120 ARRAY_SIZE(cs5535_mfd_cells));
121
122 return 0;
123
Lee Jones2d4ba912019-10-21 08:49:49 +0100124err_release_acpi:
125 pci_release_region(pdev, ACPI_BAR);
126err_remove_devices:
127 mfd_remove_devices(&pdev->dev);
128err_release_pms:
129 pci_release_region(pdev, PMS_BAR);
Andres Salomonf71e1af2010-11-26 11:52:35 +0100130err_disable:
131 pci_disable_device(pdev);
132 return err;
133}
134
Bill Pemberton4740f732012-11-19 13:26:01 -0500135static void cs5535_mfd_remove(struct pci_dev *pdev)
Andres Salomonf71e1af2010-11-26 11:52:35 +0100136{
137 mfd_remove_devices(&pdev->dev);
Lee Jones2d4ba912019-10-21 08:49:49 +0100138
139 if (machine_is_olpc())
140 pci_release_region(pdev, ACPI_BAR);
141
142 pci_release_region(pdev, PMS_BAR);
Andres Salomonf71e1af2010-11-26 11:52:35 +0100143 pci_disable_device(pdev);
144}
145
Jingoo Han36fcd062013-12-03 08:15:39 +0900146static const struct pci_device_id cs5535_mfd_pci_tbl[] = {
Andres Salomonf71e1af2010-11-26 11:52:35 +0100147 { PCI_DEVICE(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_CS5535_ISA) },
148 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_CS5536_ISA) },
149 { 0, }
150};
151MODULE_DEVICE_TABLE(pci, cs5535_mfd_pci_tbl);
152
Christian Gmeiner97e43c92011-12-13 21:30:04 +0100153static struct pci_driver cs5535_mfd_driver = {
Andres Salomonf71e1af2010-11-26 11:52:35 +0100154 .name = DRV_NAME,
155 .id_table = cs5535_mfd_pci_tbl,
156 .probe = cs5535_mfd_probe,
Bill Pemberton84449212012-11-19 13:20:24 -0500157 .remove = cs5535_mfd_remove,
Andres Salomonf71e1af2010-11-26 11:52:35 +0100158};
159
Axel Lin38a36f52012-04-03 09:09:19 +0800160module_pci_driver(cs5535_mfd_driver);
Andres Salomonf71e1af2010-11-26 11:52:35 +0100161
162MODULE_AUTHOR("Andres Salomon <dilinger@queued.net>");
163MODULE_DESCRIPTION("MFD driver for CS5535/CS5536 southbridge's ISA PCI device");
164MODULE_LICENSE("GPL");