Merge tag 'sound-5.7-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai...
[linux-block.git] / drivers / mfd / cs5535-mfd.c
CommitLineData
82c29810 1// SPDX-License-Identifier: GPL-2.0-only
f71e1afd
AS
2/*
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>
f71e1afd
AS
11 */
12
13#include <linux/kernel.h>
f71e1afd
AS
14#include <linux/mfd/core.h>
15#include <linux/module.h>
16#include <linux/pci.h>
fa1df691 17#include <asm/olpc.h>
f71e1afd
AS
18
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
a9e9ce4c 30static struct resource cs5535_mfd_resources[NR_BARS];
f71e1afd 31
a9e9ce4c 32static struct mfd_cell cs5535_mfd_cells[] = {
f71e1afd 33 {
f71e1afd
AS
34 .name = "cs5535-smb",
35 .num_resources = 1,
36 .resources = &cs5535_mfd_resources[SMB_BAR],
37 },
38 {
f71e1afd
AS
39 .name = "cs5535-gpio",
40 .num_resources = 1,
41 .resources = &cs5535_mfd_resources[GPIO_BAR],
42 },
43 {
f71e1afd
AS
44 .name = "cs5535-mfgpt",
45 .num_resources = 1,
46 .resources = &cs5535_mfd_resources[MFGPT_BAR],
47 },
48 {
f71e1afd
AS
49 .name = "cs5535-pms",
50 .num_resources = 1,
51 .resources = &cs5535_mfd_resources[PMS_BAR],
52 },
99cd1059
LJ
53};
54
55static struct mfd_cell cs5535_olpc_mfd_cells[] = {
f71e1afd 56 {
99cd1059
LJ
57 .name = "olpc-xo1-pm-acpi",
58 .num_resources = 1,
59 .resources = &cs5535_mfd_resources[ACPI_BAR],
60 },
61 {
62 .name = "olpc-xo1-sci-acpi",
f71e1afd
AS
63 .num_resources = 1,
64 .resources = &cs5535_mfd_resources[ACPI_BAR],
65 },
fd54d65d 66};
fa1df691 67
f791be49 68static int cs5535_mfd_probe(struct pci_dev *pdev,
f71e1afd
AS
69 const struct pci_device_id *id)
70{
2129e56e 71 int err, bar;
f71e1afd
AS
72
73 err = pci_enable_device(pdev);
74 if (err)
75 return err;
76
2129e56e 77 for (bar = 0; bar < NR_BARS; bar++) {
f71e1afd
AS
78 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);
f71e1afd
AS
83 }
84
2d4ba917
LJ
85 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
601e4289 91 err = mfd_add_devices(&pdev->dev, PLATFORM_DEVID_NONE, cs5535_mfd_cells,
0848c94f 92 ARRAY_SIZE(cs5535_mfd_cells), NULL, 0, NULL);
f71e1afd 93 if (err) {
601e4289
LJ
94 dev_err(&pdev->dev,
95 "Failed to add CS5535 sub-devices: %d\n", err);
2d4ba917 96 goto err_release_pms;
f71e1afd 97 }
fd54d65d 98
2d4ba917
LJ
99 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
99cd1059
LJ
107 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);
2d4ba917 111 if (err) {
99cd1059
LJ
112 dev_err(&pdev->dev,
113 "Failed to add CS5535 OLPC sub-devices: %d\n",
114 err);
2d4ba917
LJ
115 goto err_release_acpi;
116 }
117 }
f71e1afd 118
816b4580 119 dev_info(&pdev->dev, "%zu devices registered.\n",
f71e1afd
AS
120 ARRAY_SIZE(cs5535_mfd_cells));
121
122 return 0;
123
2d4ba917
LJ
124err_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);
f71e1afd
AS
130err_disable:
131 pci_disable_device(pdev);
132 return err;
133}
134
4740f73f 135static void cs5535_mfd_remove(struct pci_dev *pdev)
f71e1afd
AS
136{
137 mfd_remove_devices(&pdev->dev);
2d4ba917
LJ
138
139 if (machine_is_olpc())
140 pci_release_region(pdev, ACPI_BAR);
141
142 pci_release_region(pdev, PMS_BAR);
f71e1afd
AS
143 pci_disable_device(pdev);
144}
145
36fcd06c 146static const struct pci_device_id cs5535_mfd_pci_tbl[] = {
f71e1afd
AS
147 { 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
97e43c98 153static struct pci_driver cs5535_mfd_driver = {
f71e1afd
AS
154 .name = DRV_NAME,
155 .id_table = cs5535_mfd_pci_tbl,
156 .probe = cs5535_mfd_probe,
84449216 157 .remove = cs5535_mfd_remove,
f71e1afd
AS
158};
159
38a36f5a 160module_pci_driver(cs5535_mfd_driver);
f71e1afd
AS
161
162MODULE_AUTHOR("Andres Salomon <dilinger@queued.net>");
163MODULE_DESCRIPTION("MFD driver for CS5535/CS5536 southbridge's ISA PCI device");
164MODULE_LICENSE("GPL");