| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/hsi/ |
| H A D | client-devices.txt | 7 - hsi-channel-ids: A list of channel ids 9 - hsi-rx-mode: Receiver Bit transmission mode ("stream" or "frame") 10 - hsi-tx-mode: Transmitter Bit transmission mode ("stream" or "frame") 11 - hsi-mode: May be used instead hsi-rx-mode and hsi-tx-mode if 14 - hsi-speed-kbps: Max bit transmission speed in kbit/s 15 - hsi-flow: RX flow type ("synchronized" or "pipeline") 16 - hsi-arb-mode: Arbitration mode for TX frame ("round-robin", "priority") 20 - hsi-channel-names: A list with one name per channel specified in the 21 hsi-channel-ids property 26 hsi-controller { [all …]
|
| H A D | nokia-modem.txt | 12 - hsi-channel-names: Should contain the following strings 30 modem: hsi-client { 36 hsi-channel-ids = <0>, <1>, <2>, <3>; 37 hsi-channel-names = "mcsaab-control", 41 hsi-speed-kbps = <55000>; 42 hsi-mode = "frame"; 43 hsi-flow = "synchronized"; 44 hsi-arb-mode = "round-robin";
|
| H A D | omap-ssi.txt | 9 - compatible: Should include "ti,omap3-ssi" or "ti,omap4-hsi" 32 ti,omap4-hsi-port (applicable to OMAP44xx devices)
|
| /OK3568_Linux_fs/kernel/drivers/hsi/ |
| H A D | hsi_core.c | 118 static void hsi_scan_board_info(struct hsi_controller *hsi) in hsi_scan_board_info() argument 124 if (cl_info->info.hsi_id == hsi->id) { in hsi_scan_board_info() 125 p = hsi_find_port_num(hsi, cl_info->info.port); in hsi_scan_board_info() 343 struct hsi_controller *hsi = to_hsi_controller(dev); in hsi_controller_release() local 345 kfree(hsi->port); in hsi_controller_release() 346 kfree(hsi); in hsi_controller_release() 368 void hsi_unregister_controller(struct hsi_controller *hsi) in hsi_unregister_controller() argument 370 device_for_each_child(&hsi->device, NULL, hsi_remove_port); in hsi_unregister_controller() 371 device_unregister(&hsi->device); in hsi_unregister_controller() 381 int hsi_register_controller(struct hsi_controller *hsi) in hsi_register_controller() argument [all …]
|
| H A D | Makefile | 5 obj-$(CONFIG_HSI) += hsi.o 6 hsi-objs := hsi_core.o 7 hsi-$(CONFIG_HSI_BOARDINFO) += hsi_boardinfo.o
|
| H A D | Kconfig | 18 source "drivers/hsi/controllers/Kconfig" 19 source "drivers/hsi/clients/Kconfig"
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/hsi/ |
| H A D | ..install.cmd | 1 …hsi/.install := /bin/sh scripts/headers_install.sh /data/jenkins/workspace/GNU-toolchain/arm-10/bu…
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/hsi/ |
| H A D | ..install.cmd | 1 …hsi/.install := /bin/sh scripts/headers_install.sh /data/jenkins/workspace/GNU-toolchain/arm-10/bu…
|
| /OK3568_Linux_fs/kernel/include/linux/hsi/ |
| H A D | hsi.h | 280 void hsi_put_controller(struct hsi_controller *hsi); 281 int hsi_register_controller(struct hsi_controller *hsi); 282 void hsi_unregister_controller(struct hsi_controller *hsi); 299 static inline void hsi_controller_set_drvdata(struct hsi_controller *hsi, in hsi_controller_set_drvdata() argument 302 dev_set_drvdata(&hsi->device, data); in hsi_controller_set_drvdata() 305 static inline void *hsi_controller_drvdata(struct hsi_controller *hsi) in hsi_controller_drvdata() argument 307 return dev_get_drvdata(&hsi->device); in hsi_controller_drvdata() 310 static inline struct hsi_port *hsi_find_port_num(struct hsi_controller *hsi, in hsi_find_port_num() argument 313 return (num < hsi->num_ports) ? hsi->port[num] : NULL; in hsi_find_port_num()
|
| /OK3568_Linux_fs/kernel/Documentation/driver-api/ |
| H A D | hsi.rst | 43 In the Linux kernel the hsi subsystem is supposed to be used for HSI devices. 44 The hsi subsystem contains drivers for hsi controllers including support for 51 hsi-char Device 83 .. kernel-doc:: include/linux/hsi/hsi.h 86 .. kernel-doc:: drivers/hsi/hsi_core.c
|
| H A D | index.rst | 44 hsi
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/testing/ |
| H A D | sysfs-bus-hsi | 1 What: /sys/bus/hsi 14 What: /sys/bus/hsi/devices/.../modalias 19 Format: hsi:<hsi_client device name>
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/dts/ |
| H A D | omap3-n950-n9.dtsi | 453 modem: hsi-client { 457 hsi-channel-ids = <0>, <1>, <2>, <3>; 458 hsi-channel-names = "mcsaab-control", 462 hsi-speed-kbps = <96000>; 463 hsi-mode = "frame"; 464 hsi-flow = "synchronized"; 465 hsi-arb-mode = "round-robin";
|
| H A D | omap3-n900.dts | 1161 modem: hsi-client { 1167 hsi-channel-ids = <0>, <1>, <2>, <3>; 1168 hsi-channel-names = "mcsaab-control", 1172 hsi-speed-kbps = <55000>; 1173 hsi-mode = "frame"; 1174 hsi-flow = "synchronized"; 1175 hsi-arb-mode = "round-robin";
|
| /OK3568_Linux_fs/kernel/arch/x86/boot/ |
| H A D | apm.c | 50 boot_params.apm_bios_info.cseg_16_len = oreg.hsi; in query_apm_bios()
|
| H A D | boot.h | 244 u16 si, hsi; member
|
| /OK3568_Linux_fs/kernel/drivers/media/platform/vsp1/ |
| H A D | vsp1_drv.c | 298 vsp1->hsi = vsp1_hsit_create(vsp1, true); in vsp1_create_entities() 299 if (IS_ERR(vsp1->hsi)) { in vsp1_create_entities() 300 ret = PTR_ERR(vsp1->hsi); in vsp1_create_entities() 304 list_add_tail(&vsp1->hsi->entity.list_dev, &vsp1->entities); in vsp1_create_entities()
|
| H A D | vsp1.h | 88 struct vsp1_hsit *hsi; member
|
| /OK3568_Linux_fs/kernel/drivers/misc/genwqe/ |
| H A D | card_ddcb.h | 48 u8 hsi; member
|
| H A D | card_ddcb.c | 184 pddcb->hsi, in print_ddcb_info() 406 if ((pddcb->hsi == 0x44) && (retc_16 <= 0x101)) { in genwqe_check_ddcb_queue() 416 pddcb->hsi, retc_16, errcnts, status, in genwqe_check_ddcb_queue()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-bsp/fwupd/ |
| H A D | fwupd_1.7.6.bb | 27 hsi \ 64 PACKAGECONFIG[hsi] = "-Dhsi=true,-Dhsi=false"
|
| /OK3568_Linux_fs/kernel/drivers/ |
| H A D | Makefile | 87 obj-$(CONFIG_HSI) += hsi/
|
| H A D | Kconfig | 71 source "drivers/hsi/Kconfig"
|
| /OK3568_Linux_fs/u-boot/doc/device-tree-bindings/misc/ |
| H A D | intel,baytrail-fsp.txt | 33 - fsp,enable-hsi
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/pinctrl/ |
| H A D | nvidia,tegra114-pinmux.txt | 87 extperiph3, gmi, gmi_alt, hda, hsi, i2c1, i2c2, i2c3, i2c4, i2cpwr,
|