~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/isa.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/linux/isa.h (Version linux-6.11-rc3) and /include/linux/isa.h (Version linux-6.4.16)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*                                                  2 /*
  3  * ISA bus.                                         3  * ISA bus.
  4  */                                                 4  */
  5                                                     5 
  6 #ifndef __LINUX_ISA_H                               6 #ifndef __LINUX_ISA_H
  7 #define __LINUX_ISA_H                               7 #define __LINUX_ISA_H
  8                                                     8 
  9 #include <linux/device.h>                           9 #include <linux/device.h>
 10 #include <linux/errno.h>                           10 #include <linux/errno.h>
 11 #include <linux/kernel.h>                          11 #include <linux/kernel.h>
 12                                                    12 
 13 struct isa_driver {                                13 struct isa_driver {
 14         int (*match)(struct device *, unsigned     14         int (*match)(struct device *, unsigned int);
 15         int (*probe)(struct device *, unsigned     15         int (*probe)(struct device *, unsigned int);
 16         void (*remove)(struct device *, unsign     16         void (*remove)(struct device *, unsigned int);
 17         void (*shutdown)(struct device *, unsi     17         void (*shutdown)(struct device *, unsigned int);
 18         int (*suspend)(struct device *, unsign     18         int (*suspend)(struct device *, unsigned int, pm_message_t);
 19         int (*resume)(struct device *, unsigne     19         int (*resume)(struct device *, unsigned int);
 20                                                    20 
 21         struct device_driver driver;               21         struct device_driver driver;
 22         struct device *devices;                    22         struct device *devices;
 23 };                                                 23 };
 24                                                    24 
 25 #define to_isa_driver(x) container_of((x), str     25 #define to_isa_driver(x) container_of((x), struct isa_driver, driver)
 26                                                    26 
 27 #ifdef CONFIG_ISA_BUS_API                          27 #ifdef CONFIG_ISA_BUS_API
 28 int isa_register_driver(struct isa_driver *, u     28 int isa_register_driver(struct isa_driver *, unsigned int);
 29 void isa_unregister_driver(struct isa_driver *     29 void isa_unregister_driver(struct isa_driver *);
 30 #else                                              30 #else
 31 static inline int isa_register_driver(struct i     31 static inline int isa_register_driver(struct isa_driver *d, unsigned int i)
 32 {                                                  32 {
 33         return -ENODEV;                            33         return -ENODEV;
 34 }                                                  34 }
 35                                                    35 
 36 static inline void isa_unregister_driver(struc     36 static inline void isa_unregister_driver(struct isa_driver *d)
 37 {                                                  37 {
 38 }                                                  38 }
 39 #endif                                             39 #endif
 40                                                    40 
 41 #define module_isa_driver_init(__isa_driver, _     41 #define module_isa_driver_init(__isa_driver, __num_isa_dev) \
 42 static int __init __isa_driver##_init(void) \      42 static int __init __isa_driver##_init(void) \
 43 { \                                                43 { \
 44         return isa_register_driver(&(__isa_dri     44         return isa_register_driver(&(__isa_driver), __num_isa_dev); \
 45 } \                                                45 } \
 46 module_init(__isa_driver##_init)                   46 module_init(__isa_driver##_init)
 47                                                    47 
 48 #define module_isa_driver_with_irq_init(__isa_     48 #define module_isa_driver_with_irq_init(__isa_driver, __num_isa_dev, __num_irq) \
 49 static int __init __isa_driver##_init(void) \      49 static int __init __isa_driver##_init(void) \
 50 { \                                                50 { \
 51         if (__num_irq != __num_isa_dev) { \        51         if (__num_irq != __num_isa_dev) { \
 52                 pr_err("%s: Number of irq (%u)     52                 pr_err("%s: Number of irq (%u) does not match number of base (%u)\n", \
 53                        __isa_driver.driver.nam     53                        __isa_driver.driver.name, __num_irq, __num_isa_dev); \
 54                 return -EINVAL; \                  54                 return -EINVAL; \
 55         } \                                        55         } \
 56         return isa_register_driver(&(__isa_dri     56         return isa_register_driver(&(__isa_driver), __num_isa_dev); \
 57 } \                                                57 } \
 58 module_init(__isa_driver##_init)                   58 module_init(__isa_driver##_init)
 59                                                    59 
 60 #define module_isa_driver_exit(__isa_driver) \     60 #define module_isa_driver_exit(__isa_driver) \
 61 static void __exit __isa_driver##_exit(void) \     61 static void __exit __isa_driver##_exit(void) \
 62 { \                                                62 { \
 63         isa_unregister_driver(&(__isa_driver))     63         isa_unregister_driver(&(__isa_driver)); \
 64 } \                                                64 } \
 65 module_exit(__isa_driver##_exit)                   65 module_exit(__isa_driver##_exit)
 66                                                    66 
 67 /**                                                67 /**
 68  * module_isa_driver() - Helper macro for regi     68  * module_isa_driver() - Helper macro for registering a ISA driver
 69  * @__isa_driver: isa_driver struct                69  * @__isa_driver: isa_driver struct
 70  * @__num_isa_dev: number of devices to regist     70  * @__num_isa_dev: number of devices to register
 71  *                                                 71  *
 72  * Helper macro for ISA drivers which do not d     72  * Helper macro for ISA drivers which do not do anything special in module
 73  * init/exit. This eliminates a lot of boilerp     73  * init/exit. This eliminates a lot of boilerplate code. Each module may only
 74  * use this macro once, and calling it replace     74  * use this macro once, and calling it replaces module_init and module_exit.
 75  */                                                75  */
 76 #define module_isa_driver(__isa_driver, __num_     76 #define module_isa_driver(__isa_driver, __num_isa_dev) \
 77 module_isa_driver_init(__isa_driver, __num_isa     77 module_isa_driver_init(__isa_driver, __num_isa_dev); \
 78 module_isa_driver_exit(__isa_driver)               78 module_isa_driver_exit(__isa_driver)
 79                                                    79 
 80 /**                                                80 /**
 81  * module_isa_driver_with_irq() - Helper macro     81  * module_isa_driver_with_irq() - Helper macro for registering an ISA driver with irq
 82  * @__isa_driver: isa_driver struct                82  * @__isa_driver: isa_driver struct
 83  * @__num_isa_dev: number of devices to regist     83  * @__num_isa_dev: number of devices to register
 84  * @__num_irq: number of IRQ to register           84  * @__num_irq: number of IRQ to register
 85  *                                                 85  *
 86  * Helper macro for ISA drivers with irq that      86  * Helper macro for ISA drivers with irq that do not do anything special in
 87  * module init/exit. Each module may only use      87  * module init/exit. Each module may only use this macro once, and calling it
 88  * replaces module_init and module_exit.           88  * replaces module_init and module_exit.
 89  */                                                89  */
 90 #define module_isa_driver_with_irq(__isa_drive     90 #define module_isa_driver_with_irq(__isa_driver, __num_isa_dev, __num_irq) \
 91 module_isa_driver_with_irq_init(__isa_driver,      91 module_isa_driver_with_irq_init(__isa_driver, __num_isa_dev, __num_irq); \
 92 module_isa_driver_exit(__isa_driver)               92 module_isa_driver_exit(__isa_driver)
 93                                                    93 
 94 /**                                                94 /**
 95  * max_num_isa_dev() - Maximum possible number     95  * max_num_isa_dev() - Maximum possible number registered of an ISA device
 96  * @__ida_dev_ext: ISA device address extent       96  * @__ida_dev_ext: ISA device address extent
 97  *                                                 97  *
 98  * The highest base address possible for an IS     98  * The highest base address possible for an ISA device is 0x3FF; this results in
 99  * 1024 possible base addresses. Dividing the      99  * 1024 possible base addresses. Dividing the number of possible base addresses
100  * by the address extent taken by each device     100  * by the address extent taken by each device results in the maximum number of
101  * devices on a system.                           101  * devices on a system.
102  */                                               102  */
103 #define max_num_isa_dev(__isa_dev_ext) (1024 /    103 #define max_num_isa_dev(__isa_dev_ext) (1024 / __isa_dev_ext)
104                                                   104 
105 #endif /* __LINUX_ISA_H */                        105 #endif /* __LINUX_ISA_H */
106                                                   106 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php