| /kernel/linux/linux-6.6/drivers/gpu/drm/mediatek/ |
| D | mtk_disp_drv.h | 15 int mtk_aal_clk_enable(struct device *dev); 16 void mtk_aal_clk_disable(struct device *dev); 17 void mtk_aal_config(struct device *dev, unsigned int w, 20 void mtk_aal_gamma_set(struct device *dev, struct drm_crtc_state *state); 21 void mtk_aal_start(struct device *dev); 22 void mtk_aal_stop(struct device *dev); 24 void mtk_ccorr_ctm_set(struct device *dev, struct drm_crtc_state *state); 25 int mtk_ccorr_clk_enable(struct device *dev); 26 void mtk_ccorr_clk_disable(struct device *dev); 27 void mtk_ccorr_config(struct device *dev, unsigned int w, [all …]
|
| /kernel/linux/linux-6.6/drivers/block/drbd/ |
| D | drbd_actlog.c | 57 * sectors-written since device creation, and other data generation tag 73 * allows to cover device sizes of up to 2**54 Byte (16 PiB) */ 82 void *drbd_md_get_buffer(struct drbd_device *device, const char *intent) in drbd_md_get_buffer() argument 86 wait_event(device->misc_wait, in drbd_md_get_buffer() 87 (r = atomic_cmpxchg(&device->md_io.in_use, 0, 1)) == 0 || in drbd_md_get_buffer() 88 device->state.disk <= D_FAILED); in drbd_md_get_buffer() 93 device->md_io.current_use = intent; in drbd_md_get_buffer() 94 device->md_io.start_jif = jiffies; in drbd_md_get_buffer() 95 device->md_io.submit_jif = device->md_io.start_jif - 1; in drbd_md_get_buffer() 96 return page_address(device->md_io.page); in drbd_md_get_buffer() [all …]
|
| D | drbd_worker.c | 52 struct drbd_device *device; in drbd_md_endio() local 54 device = bio->bi_private; in drbd_md_endio() 55 device->md_io.error = blk_status_to_errno(bio->bi_status); in drbd_md_endio() 58 if (device->ldev) in drbd_md_endio() 59 put_ldev(device); in drbd_md_endio() 63 * to timeout on the lower level device, and eventually detach from it. in drbd_md_endio() 71 * ASSERT(atomic_read(&device->md_io_in_use) == 1) there. in drbd_md_endio() 73 drbd_md_put_buffer(device); in drbd_md_endio() 74 device->md_io.done = 1; in drbd_md_endio() 75 wake_up(&device->misc_wait); in drbd_md_endio() [all …]
|
| /kernel/linux/linux-5.10/drivers/block/drbd/ |
| D | drbd_actlog.c | 57 * sectors-written since device creation, and other data generation tag 73 * allows to cover device sizes of up to 2**54 Byte (16 PiB) */ 82 void *drbd_md_get_buffer(struct drbd_device *device, const char *intent) in drbd_md_get_buffer() argument 86 wait_event(device->misc_wait, in drbd_md_get_buffer() 87 (r = atomic_cmpxchg(&device->md_io.in_use, 0, 1)) == 0 || in drbd_md_get_buffer() 88 device->state.disk <= D_FAILED); in drbd_md_get_buffer() 93 device->md_io.current_use = intent; in drbd_md_get_buffer() 94 device->md_io.start_jif = jiffies; in drbd_md_get_buffer() 95 device->md_io.submit_jif = device->md_io.start_jif - 1; in drbd_md_get_buffer() 96 return page_address(device->md_io.page); in drbd_md_get_buffer() [all …]
|
| D | drbd_worker.c | 52 struct drbd_device *device; in drbd_md_endio() local 54 device = bio->bi_private; in drbd_md_endio() 55 device->md_io.error = blk_status_to_errno(bio->bi_status); in drbd_md_endio() 58 if (device->ldev) in drbd_md_endio() 59 put_ldev(device); in drbd_md_endio() 63 * to timeout on the lower level device, and eventually detach from it. in drbd_md_endio() 71 * ASSERT(atomic_read(&device->md_io_in_use) == 1) there. in drbd_md_endio() 73 drbd_md_put_buffer(device); in drbd_md_endio() 74 device->md_io.done = 1; in drbd_md_endio() 75 wake_up(&device->misc_wait); in drbd_md_endio() [all …]
|
| /kernel/linux/linux-6.6/include/linux/ |
| D | device.h | 3 * device.h - generic, centralized driver model 30 #include <linux/device/bus.h> 31 #include <linux/device/class.h> 32 #include <linux/device/driver.h> 34 #include <asm/device.h> 36 struct device; 52 * struct subsys_interface - interfaces to device functions 53 * @name: name of the device function 56 * @add_dev: device hookup to device function handler 57 * @remove_dev: device hookup to device function handler [all …]
|
| D | pm_runtime.h | 3 * pm_runtime.h - Device run-time power management helper functions. 11 #include <linux/device.h> 67 extern int pm_generic_runtime_suspend(struct device *dev); 68 extern int pm_generic_runtime_resume(struct device *dev); 69 extern bool pm_runtime_need_not_resume(struct device *dev); 70 extern int pm_runtime_force_suspend(struct device *dev); 71 extern int pm_runtime_force_resume(struct device *dev); 73 extern int __pm_runtime_idle(struct device *dev, int rpmflags); 74 extern int __pm_runtime_suspend(struct device *dev, int rpmflags); 75 extern int __pm_runtime_resume(struct device *dev, int rpmflags); [all …]
|
| /kernel/linux/linux-5.10/include/linux/ |
| D | device.h | 3 * device.h - generic, centralized driver model 30 #include <linux/device/bus.h> 31 #include <linux/device/class.h> 32 #include <linux/device/driver.h> 33 #include <asm/device.h> 35 struct device; 50 * struct subsys_interface - interfaces to device functions 51 * @name: name of the device function 54 * @add_dev: device hookup to device function handler 55 * @remove_dev: device hookup to device function handler [all …]
|
| D | pm_runtime.h | 3 * pm_runtime.h - Device run-time power management helper functions. 11 #include <linux/device.h> 33 extern int pm_generic_runtime_suspend(struct device *dev); 34 extern int pm_generic_runtime_resume(struct device *dev); 35 extern int pm_runtime_force_suspend(struct device *dev); 36 extern int pm_runtime_force_resume(struct device *dev); 38 extern int __pm_runtime_idle(struct device *dev, int rpmflags); 39 extern int __pm_runtime_suspend(struct device *dev, int rpmflags); 40 extern int __pm_runtime_resume(struct device *dev, int rpmflags); 41 extern int pm_runtime_get_if_active(struct device *dev, bool ign_usage_count); [all …]
|
| /kernel/linux/linux-6.6/include/linux/device/ |
| D | bus.h | 25 * struct bus_type - The bus type of the device 31 * @drv_groups: Default attributes of the device drivers on the bus. 32 * @match: Called, perhaps multiple times, whenever a new device or driver 34 * given device can be handled by the given driver and zero 36 * the driver supports the device is not possible. In case of 37 * -EPROBE_DEFER it will queue the device for deferred probing. 38 * @uevent: Called when a device is added, removed, or a few other things 40 * @probe: Called when a new device or driver add to this bus, and callback 41 * the specific driver's probe to initial the matched device. 42 * @sync_state: Called to sync device state to software state after all the [all …]
|
| /kernel/linux/linux-6.6/drivers/s390/char/ |
| D | tape_core.c | 3 * basic function of the tape device driver 94 tape_medium_state_show(struct device *dev, struct device_attribute *attr, char *buf) in tape_medium_state_show() 106 tape_first_minor_show(struct device *dev, struct device_attribute *attr, char *buf) in tape_first_minor_show() 118 tape_state_show(struct device *dev, struct device_attribute *attr, char *buf) in tape_state_show() 131 tape_operation_show(struct device *dev, struct device_attribute *attr, char *buf) in tape_operation_show() 158 tape_blocksize_show(struct device *dev, struct device_attribute *attr, char *buf) in tape_blocksize_show() 187 tape_state_set(struct tape_device *device, enum tape_state newstate) in tape_state_set() argument 191 if (device->tape_state == TS_NOT_OPER) { in tape_state_set() 195 DBF_EVENT(4, "ts. dev: %x\n", device->first_minor); in tape_state_set() 197 if (device->tape_state < TS_SIZE && device->tape_state >=0 ) in tape_state_set() [all …]
|
| D | tape_char.c | 3 * character device frontend for tape device driver 64 tapechar_setup_device(struct tape_device * device) in tapechar_setup_device() argument 68 sprintf(device_name, "ntibm%i", device->first_minor / 2); in tapechar_setup_device() 69 device->nt = register_tape_dev( in tapechar_setup_device() 70 &device->cdev->dev, in tapechar_setup_device() 71 MKDEV(tapechar_major, device->first_minor), in tapechar_setup_device() 77 device->rt = register_tape_dev( in tapechar_setup_device() 78 &device->cdev->dev, in tapechar_setup_device() 79 MKDEV(tapechar_major, device->first_minor + 1), in tapechar_setup_device() 89 tapechar_cleanup_device(struct tape_device *device) in tapechar_cleanup_device() argument [all …]
|
| /kernel/linux/linux-5.10/drivers/s390/char/ |
| D | tape_core.c | 3 * basic function of the tape device driver 94 tape_medium_state_show(struct device *dev, struct device_attribute *attr, char *buf) in tape_medium_state_show() 106 tape_first_minor_show(struct device *dev, struct device_attribute *attr, char *buf) in tape_first_minor_show() 118 tape_state_show(struct device *dev, struct device_attribute *attr, char *buf) in tape_state_show() 131 tape_operation_show(struct device *dev, struct device_attribute *attr, char *buf) in tape_operation_show() 158 tape_blocksize_show(struct device *dev, struct device_attribute *attr, char *buf) in tape_blocksize_show() 187 tape_state_set(struct tape_device *device, enum tape_state newstate) in tape_state_set() argument 191 if (device->tape_state == TS_NOT_OPER) { in tape_state_set() 195 DBF_EVENT(4, "ts. dev: %x\n", device->first_minor); in tape_state_set() 197 if (device->tape_state < TS_SIZE && device->tape_state >=0 ) in tape_state_set() [all …]
|
| D | tape_char.c | 3 * character device frontend for tape device driver 64 tapechar_setup_device(struct tape_device * device) in tapechar_setup_device() argument 68 sprintf(device_name, "ntibm%i", device->first_minor / 2); in tapechar_setup_device() 69 device->nt = register_tape_dev( in tapechar_setup_device() 70 &device->cdev->dev, in tapechar_setup_device() 71 MKDEV(tapechar_major, device->first_minor), in tapechar_setup_device() 77 device->rt = register_tape_dev( in tapechar_setup_device() 78 &device->cdev->dev, in tapechar_setup_device() 79 MKDEV(tapechar_major, device->first_minor + 1), in tapechar_setup_device() 89 tapechar_cleanup_device(struct tape_device *device) in tapechar_cleanup_device() argument [all …]
|
| /kernel/linux/linux-5.10/drivers/base/power/ |
| D | power.h | 4 static inline void device_pm_init_common(struct device *dev) in device_pm_init_common() 15 static inline void pm_runtime_early_init(struct device *dev) in pm_runtime_early_init() 21 extern void pm_runtime_init(struct device *dev); 22 extern void pm_runtime_reinit(struct device *dev); 23 extern void pm_runtime_remove(struct device *dev); 24 extern u64 pm_runtime_active_time(struct device *dev); 35 struct device *dev; 43 extern void dev_pm_enable_wake_irq_check(struct device *dev, 45 extern void dev_pm_disable_wake_irq_check(struct device *dev, bool cond_disable); 46 extern void dev_pm_enable_wake_irq_complete(struct device *dev); [all …]
|
| /kernel/linux/linux-6.6/drivers/base/power/ |
| D | power.h | 4 static inline void device_pm_init_common(struct device *dev) in device_pm_init_common() 15 static inline void pm_runtime_early_init(struct device *dev) in pm_runtime_early_init() 21 extern void pm_runtime_init(struct device *dev); 22 extern void pm_runtime_reinit(struct device *dev); 23 extern void pm_runtime_remove(struct device *dev); 24 extern u64 pm_runtime_active_time(struct device *dev); 35 struct device *dev; 43 extern void dev_pm_enable_wake_irq_check(struct device *dev, 45 extern void dev_pm_disable_wake_irq_check(struct device *dev, bool cond_disable); 46 extern void dev_pm_enable_wake_irq_complete(struct device *dev); [all …]
|
| /kernel/linux/linux-5.10/include/linux/device/ |
| D | bus.h | 25 * struct bus_type - The bus type of the device 29 * @dev_root: Default device to use as the parent. 32 * @drv_groups: Default attributes of the device drivers on the bus. 33 * @match: Called, perhaps multiple times, whenever a new device or driver 35 * given device can be handled by the given driver and zero 37 * the driver supports the device is not possible. In case of 38 * -EPROBE_DEFER it will queue the device for deferred probing. 39 * @uevent: Called when a device is added, removed, or a few other things 41 * @probe: Called when a new device or driver add to this bus, and callback 42 * the specific driver's probe to initial the matched device. [all …]
|
| /kernel/linux/linux-5.10/drivers/s390/block/ |
| D | dasd.c | 64 MODULE_DESCRIPTION("Linux on S/390 DASD device driver," 91 * SECTION: Operations on the device structure. 99 * Allocate memory for a new device structure. 103 struct dasd_device *device; in dasd_alloc_device() local 105 device = kzalloc(sizeof(struct dasd_device), GFP_ATOMIC); in dasd_alloc_device() 106 if (!device) in dasd_alloc_device() 109 /* Get two pages for normal block device operations. */ in dasd_alloc_device() 110 device->ccw_mem = (void *) __get_free_pages(GFP_ATOMIC | GFP_DMA, 1); in dasd_alloc_device() 111 if (!device->ccw_mem) { in dasd_alloc_device() 112 kfree(device); in dasd_alloc_device() [all …]
|
| D | dasd_devmap.c | 10 * Device mapping and dasd= parameter parsing functions. All devmap 39 * between device number and device index. To find a dasd_devmap_t 40 * that corresponds to a device number of a device index each 42 * the device number and one to search by the device index. As 43 * soon as big minor numbers are available the device index list 44 * can be removed since the device number will then be identical 45 * to the device index. 52 struct dasd_device *device; member 131 * Read a device busid/devno from a string. 141 pr_err("The IPL device is not a CCW device\n"); in dasd_busid() [all …]
|
| /kernel/linux/linux-6.6/drivers/s390/block/ |
| D | dasd.c | 52 MODULE_DESCRIPTION("Linux on S/390 DASD device driver," 76 * SECTION: Operations on the device structure. 84 * Allocate memory for a new device structure. 88 struct dasd_device *device; in dasd_alloc_device() local 90 device = kzalloc(sizeof(struct dasd_device), GFP_ATOMIC); in dasd_alloc_device() 91 if (!device) in dasd_alloc_device() 94 /* Get two pages for normal block device operations. */ in dasd_alloc_device() 95 device->ccw_mem = (void *) __get_free_pages(GFP_ATOMIC | GFP_DMA, 1); in dasd_alloc_device() 96 if (!device->ccw_mem) { in dasd_alloc_device() 97 kfree(device); in dasd_alloc_device() [all …]
|
| D | dasd_devmap.c | 10 * Device mapping and dasd= parameter parsing functions. All devmap 38 * between device number and device index. To find a dasd_devmap_t 39 * that corresponds to a device number of a device index each 41 * the device number and one to search by the device index. As 42 * soon as big minor numbers are available the device index list 43 * can be removed since the device number will then be identical 44 * to the device index. 51 struct dasd_device *device; member 132 * Read a device busid/devno from a string. 142 pr_err("The IPL device is not a CCW device\n"); in dasd_busid() [all …]
|
| /kernel/linux/linux-5.10/drivers/hid/ |
| D | hid-roccat.c | 12 * Module roccat is a char device used to report special events of roccat 15 * not stored in device. The information in these events depends on hid device 45 struct device *dev; 62 struct roccat_device *device; member 77 struct roccat_device *device = reader->device; in roccat_read() local 82 mutex_lock(&device->cbuf_lock); in roccat_read() 85 if (reader->cbuf_start == device->cbuf_end) { in roccat_read() 86 add_wait_queue(&device->wait, &wait); in roccat_read() 90 while (reader->cbuf_start == device->cbuf_end) { in roccat_read() 99 if (!device->exist) { in roccat_read() [all …]
|
| /kernel/linux/linux-6.6/drivers/hid/ |
| D | hid-roccat.c | 12 * Module roccat is a char device used to report special events of roccat 15 * not stored in device. The information in these events depends on hid device 45 struct device *dev; 62 struct roccat_device *device; member 77 struct roccat_device *device = reader->device; in roccat_read() local 82 mutex_lock(&device->cbuf_lock); in roccat_read() 85 if (reader->cbuf_start == device->cbuf_end) { in roccat_read() 86 add_wait_queue(&device->wait, &wait); in roccat_read() 90 while (reader->cbuf_start == device->cbuf_end) { in roccat_read() 99 if (!device->exist) { in roccat_read() [all …]
|
| /kernel/linux/linux-6.6/drivers/firewire/ |
| D | core-device.c | 3 * Device probing and sysfs code. 11 #include <linux/device.h> 157 static const struct ieee1394_device_id *unit_match(struct device *dev, in unit_match() 173 static bool is_fw_unit(struct device *dev); 175 static int fw_unit_match(struct device *dev, struct device_driver *drv) in fw_unit_match() 181 static int fw_unit_probe(struct device *dev) in fw_unit_probe() 189 static void fw_unit_remove(struct device *dev) in fw_unit_remove() 208 static int fw_unit_uevent(const struct device *dev, struct kobj_uevent_env *env) in fw_unit_uevent() 229 int fw_device_enable_phys_dma(struct fw_device *device) in fw_device_enable_phys_dma() argument 231 int generation = device->generation; in fw_device_enable_phys_dma() [all …]
|
| /kernel/linux/linux-5.10/drivers/firewire/ |
| D | core-device.c | 3 * Device probing and sysfs code. 11 #include <linux/device.h> 157 static const struct ieee1394_device_id *unit_match(struct device *dev, in unit_match() 173 static bool is_fw_unit(struct device *dev); 175 static int fw_unit_match(struct device *dev, struct device_driver *drv) in fw_unit_match() 181 static int fw_unit_probe(struct device *dev) in fw_unit_probe() 189 static int fw_unit_remove(struct device *dev) in fw_unit_remove() 208 static int fw_unit_uevent(struct device *dev, struct kobj_uevent_env *env) in fw_unit_uevent() 229 int fw_device_enable_phys_dma(struct fw_device *device) in fw_device_enable_phys_dma() argument 231 int generation = device->generation; in fw_device_enable_phys_dma() [all …]
|