Home
last modified time | relevance | path

Searched refs:hdc (Results 1 – 16 of 16) sorted by relevance

/openbmc/linux/drivers/auxdisplay/
H A Dhd44780_common.c41 struct hd44780_common *hdc = lcd->drvdata; in hd44780_common_print() local
43 if (lcd->addr.x < hdc->bwidth) { in hd44780_common_print()
44 hdc->write_data(hdc, c); in hd44780_common_print()
54 struct hd44780_common *hdc = lcd->drvdata; in hd44780_common_gotoxy() local
61 addr = x < hdc->bwidth ? x & (hdc->hwidth - 1) : hdc->bwidth - 1; in hd44780_common_gotoxy()
63 addr += hdc->hwidth; in hd44780_common_gotoxy()
65 addr += hdc->bwidth; in hd44780_common_gotoxy()
66 hdc->write_cmd(hdc, LCD_CMD_SET_DDRAM_ADDR | addr); in hd44780_common_gotoxy()
80 struct hd44780_common *hdc = lcd->drvdata; in hd44780_common_clear_display() local
82 hdc->write_cmd(hdc, LCD_CMD_DISPLAY_CLEAR); in hd44780_common_clear_display()
[all …]
H A Dhd44780.c43 struct hd44780_common *hdc = lcd->drvdata; in hd44780_backlight() local
44 struct hd44780 *hd = hdc->hd44780; in hd44780_backlight()
106 static void hd44780_write_cmd_gpio8(struct hd44780_common *hdc, int cmd) in hd44780_write_cmd_gpio8() argument
108 struct hd44780 *hd = hdc->hd44780; in hd44780_write_cmd_gpio8()
117 static void hd44780_write_data_gpio8(struct hd44780_common *hdc, int data) in hd44780_write_data_gpio8() argument
119 struct hd44780 *hd = hdc->hd44780; in hd44780_write_data_gpio8()
145 static void hd44780_write_cmd_gpio4(struct hd44780_common *hdc, int cmd) in hd44780_write_cmd_gpio4() argument
147 struct hd44780 *hd = hdc->hd44780; in hd44780_write_cmd_gpio4()
156 static void hd44780_write_cmd_raw_gpio4(struct hd44780_common *hdc, int cmd) in hd44780_write_cmd_raw_gpio4() argument
159 struct hd44780 *hd = hdc->hd44780; in hd44780_write_cmd_raw_gpio4()
[all …]
H A Dpanel.c726 static void lcd_write_cmd_s(struct hd44780_common *hdc, int cmd) in lcd_write_cmd_s() argument
737 static void lcd_write_data_s(struct hd44780_common *hdc, int data) in lcd_write_data_s() argument
748 static void lcd_write_cmd_p8(struct hd44780_common *hdc, int cmd) in lcd_write_cmd_p8() argument
770 static void lcd_write_data_p8(struct hd44780_common *hdc, int data) in lcd_write_data_p8() argument
792 static void lcd_write_cmd_tilcd(struct hd44780_common *hdc, int cmd) in lcd_write_cmd_tilcd() argument
802 static void lcd_write_data_tilcd(struct hd44780_common *hdc, int data) in lcd_write_data_tilcd() argument
832 struct hd44780_common *hdc; in lcd_init() local
834 hdc = hd44780_common_alloc(); in lcd_init()
835 if (!hdc) in lcd_init()
840 kfree(hdc); in lcd_init()
[all …]
H A Dhd44780_common.h11 void (*write_data)(struct hd44780_common *hdc, int data);
12 void (*write_cmd)(struct hd44780_common *hdc, int cmd);
14 void (*write_cmd_raw4)(struct hd44780_common *hdc, int cmd);
/openbmc/qemu/hw/core/
H A Dhotplug.c20 HotplugHandlerClass *hdc = HOTPLUG_HANDLER_GET_CLASS(plug_handler); in hotplug_handler_pre_plug() local
22 if (hdc->pre_plug) { in hotplug_handler_pre_plug()
23 hdc->pre_plug(plug_handler, plugged_dev, errp); in hotplug_handler_pre_plug()
31 HotplugHandlerClass *hdc = HOTPLUG_HANDLER_GET_CLASS(plug_handler); in hotplug_handler_plug() local
33 if (hdc->plug) { in hotplug_handler_plug()
34 hdc->plug(plug_handler, plugged_dev, errp); in hotplug_handler_plug()
42 HotplugHandlerClass *hdc = HOTPLUG_HANDLER_GET_CLASS(plug_handler); in hotplug_handler_unplug_request() local
44 if (hdc->unplug_request) { in hotplug_handler_unplug_request()
45 hdc->unplug_request(plug_handler, plugged_dev, errp); in hotplug_handler_unplug_request()
53 HotplugHandlerClass *hdc = HOTPLUG_HANDLER_GET_CLASS(plug_handler); in hotplug_handler_unplug() local
[all …]
/openbmc/linux/Documentation/cdrom/
H A Dpacket-writing.rst16 - Grab a new CD-RW disc and format it (assuming CD-RW is hdc, substitute
19 # cdrwtool -d /dev/hdc -q
23 # pktsetup dev_name /dev/hdc
37 # dvd+rw-format /dev/hdc
41 # pktsetup dev_name /dev/hdc
53 # dvd+rw-format /dev/hdc (only needed if the disc has never
55 # mkudffs /dev/hdc
56 # mount /dev/hdc /cdrom -t udf -o rw,noatime
66 # dvd+rw-format /dev/hdc
67 # pktsetup dev_name /dev/hdc
[all …]
/openbmc/qemu/hw/virtio/
H A Dvirtio-md-pci.c75 HotplugHandlerClass *hdc; in virtio_md_pci_unplug_request() local
99 hdc = HOTPLUG_HANDLER_GET_CLASS(bus_handler); in virtio_md_pci_unplug_request()
100 if (hdc->unplug_request) { in virtio_md_pci_unplug_request()
/openbmc/qemu/include/hw/
H A Dqdev-core.h1029 HotplugHandlerClass *hdc; in qbus_is_hotpluggable() local
1031 hdc = HOTPLUG_HANDLER_GET_CLASS(plug_handler); in qbus_is_hotpluggable()
1032 if (hdc->is_hotpluggable_bus) { in qbus_is_hotpluggable()
1033 ret = hdc->is_hotpluggable_bus(plug_handler, bus); in qbus_is_hotpluggable()
/openbmc/u-boot/drivers/usb/musb-new/
H A Dusb-compat.h52 #define usb_hcd_check_unlink_urb(hdc, urb, status) 0 argument
/openbmc/qemu/system/
H A Dqdev-monitor.c908 HotplugHandlerClass *hdc; in qdev_unplug() local
941 hdc = HOTPLUG_HANDLER_GET_CLASS(hotplug_ctrl); in qdev_unplug()
942 if (hdc->unplug_request) { in qdev_unplug()
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-class-pktcdvd89 # create a new pktcdvd device mapped to /dev/hdc
/openbmc/linux/tools/arch/x86/kcpuid/
H A Dcpuid.csv139 6, 0, EAX, 13, hdc, HDC base registers supported
264 0xD, 1, ECX, 13, hdc, HDC state
/openbmc/linux/Documentation/admin-guide/
H A Dext4.rst441 /proc/fs/ext4 based on its device name (i.e., /proc/fs/ext4/hdc or
455 /sys/fs/ext4 based on its device name (i.e., /sys/fs/ext4/hdc or
H A Ddevices.txt517 0 = /dev/hdc Master: whole disk (or CD-ROM)
/openbmc/qemu/
H A Dqemu-options.hx1256 DEF("hdc", HAS_ARG, QEMU_OPTION_hdc,
1257 "-hdc/-hdd file use 'file' as hard disk 2/3 image\n", QEMU_ARCH_ALL)
1264 ``-hdc file``
1280 (which is IDE1 master on x86, so you cannot use ``-hdc`` and ``-cdrom``
1674 Instead of ``-hda``, ``-hdb``, ``-hdc``, ``-hdd``, you can use:
/openbmc/linux/Documentation/filesystems/
H A Dproc.rst1539 /proc/fs/ext4 based on its device name (i.e., /proc/fs/ext4/hdc or