blob: c60e84547cfb0c3c79b798304f303ffdfe3564d8 [file] [log] [blame]
Felix Held3f3eca92020-01-23 17:12:32 +01001/* SPDX-License-Identifier: GPL-2.0-or-later */
Sven Schnelle92cf08c2011-02-05 12:20:23 +00002
Sven Schnelle92cf08c2011-02-05 12:20:23 +00003#include <device/device.h>
4#include <device/pnp.h>
Elyes HAOUAS2329a252019-05-15 22:11:18 +02005
Sven Schnelle92cf08c2011-02-05 12:20:23 +00006#include "pc87382.h"
7
Edward O'Callaghanf21bdc32014-10-21 07:43:41 +11008static void init(struct device *dev)
Sven Schnelle92cf08c2011-02-05 12:20:23 +00009{
Sven Schnelle92cf08c2011-02-05 12:20:23 +000010 if (!dev->enabled)
11 return;
12
Elyes HAOUAS0ce41f12018-11-13 10:03:31 +010013 switch (dev->path.pnp.device) {
Sven Schnelle92cf08c2011-02-05 12:20:23 +000014 case PC87382_DOCK:
15 break;
16
17 case PC87382_GPIO:
18 break;
19 }
20}
21
22static struct device_operations ops = {
23 .read_resources = pnp_read_resources,
24 .set_resources = pnp_set_resources,
25 .enable_resources = pnp_enable_resources,
26 .enable = pnp_enable,
27 .init = init,
28};
29
30static struct pnp_info pnp_dev_info[] = {
Felix Heldfaca0bc2017-12-27 22:51:29 +010031 { NULL, PC87382_IR, PNP_IO0 | PNP_IRQ0 | PNP_DRQ0 | PNP_DRQ1,
32 0x07f8 },
33 { NULL, PC87382_SP1, PNP_IO0 | PNP_IRQ0, 0x07f8 },
34 { NULL, PC87382_GPIO, PNP_IO0 | PNP_IRQ0, 0xfff0 },
35 { NULL, PC87382_DOCK, PNP_IO0 | PNP_IRQ0, 0xfffe },
Sven Schnelle92cf08c2011-02-05 12:20:23 +000036};
37
38static void enable_dev(struct device *dev)
39{
Felix Heldfaca0bc2017-12-27 22:51:29 +010040 pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
Sven Schnelle92cf08c2011-02-05 12:20:23 +000041}
42
43struct chip_operations superio_nsc_pc87382_ops = {
Nicholas Sudsgaardbfb11be2024-01-30 09:53:46 +090044 .name = "NSC PC87382 Docking LPC Switch",
Sven Schnelle92cf08c2011-02-05 12:20:23 +000045 .enable_dev = enable_dev,
46};