1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * ACPI PCI Hot Plug Controller Driver
5 * Copyright (C) 1995,2001 Compaq Computer Corporation
6 * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
7 * Copyright (C) 2001 IBM Corp.
8 * Copyright (C) 2002 Hiroshi Aono (h-aono@ap.jp.nec.com)
9 * Copyright (C) 2002,2003 Takayoshi Kochi (t-kochi@bq.jp.nec.com)
10 * Copyright (C) 2002,2003 NEC Corporation
11 * Copyright (C) 2003-2005 Matthew Wilcox (matthew.wilcox@hp.com)
12 * Copyright (C) 2003-2005 Hewlett Packard
14 * All rights reserved.
16 * Send feedback to <gregkh@us.ibm.com>,
17 * <t-kochi@bq.jp.nec.com>
24 #include <linux/acpi.h>
25 #include <linux/mutex.h>
26 #include <linux/pci_hotplug.h>
28 struct acpiphp_context
;
29 struct acpiphp_bridge
;
33 * struct slot - slot information for each *physical* slot
36 struct hotplug_slot
*hotplug_slot
;
37 struct acpiphp_slot
*acpi_slot
;
38 struct hotplug_slot_info info
;
39 unsigned int sun
; /* ACPI _SUN (Slot User Number) value */
42 static inline const char *slot_name(struct slot
*slot
)
44 return hotplug_slot_name(slot
->hotplug_slot
);
48 * struct acpiphp_bridge - PCI bridge information
50 * for each bridge device in ACPI namespace
52 struct acpiphp_bridge
{
53 struct list_head list
;
54 struct list_head slots
;
57 struct acpiphp_context
*context
;
61 /* This bus (host bridge) or Secondary bus (PCI-to-PCI bridge) */
62 struct pci_bus
*pci_bus
;
64 /* PCI-to-PCI bridge device */
65 struct pci_dev
*pci_dev
;
72 * struct acpiphp_slot - PCI slot information
74 * PCI slot information for each *physical* PCI slot
77 struct list_head node
;
79 struct list_head funcs
; /* one slot may have different
80 objects (i.e. for each function) */
83 u8 device
; /* pci device# */
84 u32 flags
; /* see below */
89 * struct acpiphp_func - PCI function information
91 * PCI function information for each object in ACPI namespace
92 * typically 8 objects per slot (i.e. for each PCI function)
95 struct acpiphp_bridge
*parent
;
96 struct acpiphp_slot
*slot
;
98 struct list_head sibling
;
100 u8 function
; /* pci function# */
101 u32 flags
; /* see below */
104 struct acpiphp_context
{
105 struct acpi_hotplug_context hp
;
106 struct acpiphp_func func
;
107 struct acpiphp_bridge
*bridge
;
108 unsigned int refcount
;
111 static inline struct acpiphp_context
*to_acpiphp_context(struct acpi_hotplug_context
*hp
)
113 return container_of(hp
, struct acpiphp_context
, hp
);
116 static inline struct acpiphp_context
*func_to_context(struct acpiphp_func
*func
)
118 return container_of(func
, struct acpiphp_context
, func
);
121 static inline struct acpi_device
*func_to_acpi_device(struct acpiphp_func
*func
)
123 return func_to_context(func
)->hp
.self
;
126 static inline acpi_handle
func_to_handle(struct acpiphp_func
*func
)
128 return func_to_acpi_device(func
)->handle
;
131 struct acpiphp_root_context
{
132 struct acpi_hotplug_context hp
;
133 struct acpiphp_bridge
*root_bridge
;
136 static inline struct acpiphp_root_context
*to_acpiphp_root_context(struct acpi_hotplug_context
*hp
)
138 return container_of(hp
, struct acpiphp_root_context
, hp
);
142 * struct acpiphp_attention_info - device specific attention registration
144 * ACPI has no generic method of setting/getting attention status
145 * this allows for device specific driver registration
147 struct acpiphp_attention_info
149 int (*set_attn
)(struct hotplug_slot
*slot
, u8 status
);
150 int (*get_attn
)(struct hotplug_slot
*slot
, u8
*status
);
151 struct module
*owner
;
154 /* ACPI _STA method value (ignore bit 4; battery present) */
155 #define ACPI_STA_ALL (0x0000000f)
159 #define SLOT_ENABLED (0x00000001)
160 #define SLOT_IS_GOING_AWAY (0x00000002)
164 #define FUNC_HAS_STA (0x00000001)
165 #define FUNC_HAS_EJ0 (0x00000002)
167 /* function prototypes */
170 int acpiphp_register_attention(struct acpiphp_attention_info
*info
);
171 int acpiphp_unregister_attention(struct acpiphp_attention_info
*info
);
172 int acpiphp_register_hotplug_slot(struct acpiphp_slot
*slot
, unsigned int sun
);
173 void acpiphp_unregister_hotplug_slot(struct acpiphp_slot
*slot
);
176 typedef int (*acpiphp_callback
)(struct acpiphp_slot
*slot
, void *data
);
178 int acpiphp_enable_slot(struct acpiphp_slot
*slot
);
179 int acpiphp_disable_slot(struct acpiphp_slot
*slot
);
180 u8
acpiphp_get_power_status(struct acpiphp_slot
*slot
);
181 u8
acpiphp_get_attention_status(struct acpiphp_slot
*slot
);
182 u8
acpiphp_get_latch_status(struct acpiphp_slot
*slot
);
183 u8
acpiphp_get_adapter_status(struct acpiphp_slot
*slot
);
186 extern bool acpiphp_disabled
;
188 #endif /* _ACPIPHP_H */