Home
last modified time | relevance | path

Searched refs:boot (Results 1 – 25 of 96) sorted by relevance

1234

/drivers/staging/isdn/hysdn/
Dhysdn_boot.c57 StartDecryption(struct boot_data *boot) in StartDecryption() argument
59 boot->Cryptor = CRYPT_STARTTERM; in StartDecryption()
70 DecryptBuf(struct boot_data *boot, int cnt) in DecryptBuf() argument
72 unsigned char *bufp = boot->buf.BootBuf; in DecryptBuf()
75 boot->Cryptor = (boot->Cryptor >> 1) ^ ((boot->Cryptor & 1U) ? CRYPT_FEEDTERM : 0); in DecryptBuf()
76 *bufp++ ^= (unsigned char)boot->Cryptor; in DecryptBuf()
87 struct boot_data *boot = card->boot; /* pointer to boot specific data */ in pof_handle_data() local
93 switch (boot->pof_recid) { in pof_handle_data()
97 hysdn_addlog(card, "POF created %s", boot->buf.PofTime.DateTimeText); in pof_handle_data()
101 DecryptBuf(boot, datlen); /* we need to encrypt the buffer */ in pof_handle_data()
[all …]
/drivers/pnp/pnpbios/
Dbioscalls.c290 static int __pnp_bios_get_dev_node(u8 *nodenum, char boot, in __pnp_bios_get_dev_node() argument
298 if (!boot && pnpbios_dont_use_current_config) in __pnp_bios_get_dev_node()
302 boot ? 2 : 1, PNP_DS, 0, &tmp_nodenum, in __pnp_bios_get_dev_node()
308 int pnp_bios_get_dev_node(u8 *nodenum, char boot, struct pnp_bios_node *data) in pnp_bios_get_dev_node() argument
312 status = __pnp_bios_get_dev_node(nodenum, boot, data); in pnp_bios_get_dev_node()
324 static int __pnp_bios_set_dev_node(u8 nodenum, char boot, in __pnp_bios_set_dev_node() argument
331 if (!boot && pnpbios_dont_use_current_config) in __pnp_bios_set_dev_node()
334 boot ? 2 : 1, PNP_DS, 0, 0, data, 65536, NULL, in __pnp_bios_set_dev_node()
339 int pnp_bios_set_dev_node(u8 nodenum, char boot, struct pnp_bios_node *data) in pnp_bios_set_dev_node() argument
343 status = __pnp_bios_set_dev_node(nodenum, boot, data); in pnp_bios_set_dev_node()
[all …]
Dproc.c157 int boot = (long)data >> 8; in pnpbios_proc_show() local
164 if (pnp_bios_get_dev_node(&nodenum, boot, node)) { in pnpbios_proc_show()
184 int boot = (long)data >> 8; in pnpbios_proc_write() local
191 if (pnp_bios_get_dev_node(&nodenum, boot, node)) { in pnpbios_proc_write()
203 if (pnp_bios_set_dev_node(node->handle, boot, node) != 0) { in pnpbios_proc_write()
/drivers/net/can/softing/
Dsofting_cs.c35 .boot = {0x0000, 0x000000, fw_dir "bcard.bin",},
47 .boot = {0x0000, 0x000000, fw_dir "bcard.bin",},
59 .boot = {0x0000, 0x000000, fw_dir "bcard.bin",},
71 .boot = {0x0000, 0x000000, fw_dir "bcard2.bin",},
83 .boot = {0x0000, 0x000000, fw_dir "bcard.bin",},
95 .boot = {0x0000, 0x000000, fw_dir "bcard.bin",},
107 .boot = {0x0000, 0x000000, fw_dir "bcard2.bin",},
119 .boot = {0x0000, 0x000000, fw_dir "bcard.bin",},
131 .boot = {0x0000, 0x000000, fw_dir "bcard2.bin",},
Dsofting_platform.h32 } boot, load, app; member
/drivers/gpu/drm/nouveau/nvkm/subdev/instmem/
Dbase.c154 list_move_tail(&iobj->head, &imem->boot); in nvkm_instmem_boot()
174 list_for_each_entry(iobj, &imem->boot, head) { in nvkm_instmem_fini()
193 list_for_each_entry(iobj, &imem->boot, head) { in nvkm_instmem_init()
243 INIT_LIST_HEAD(&imem->boot); in nvkm_instmem_ctor()
/drivers/sfi/
DKconfig12 boot on SFI-only platforms. Currently, all SFI-only platforms are
18 Say 'Y' here to enable the kernel to boot on SFI-only platforms.
/drivers/staging/unisys/Documentation/ABI/
Dsysfs-platform-visorchipset29 the previous guest boot) has no effect.
36 Description: The boottotool flag controls s-Par behavior on the next boot of
37 this guest. Setting the flag will cause the guest to boot from
48 action to perform on the next guest boot-up. The meaning of the
/drivers/bluetooth/
Dbtmtkuart.c123 struct gpio_desc *boot; member
922 bdev->boot = devm_gpiod_get_optional(&serdev->dev, "boot", in btmtkuart_parse_dt()
924 if (IS_ERR(bdev->boot)) { in btmtkuart_parse_dt()
925 err = PTR_ERR(bdev->boot); in btmtkuart_parse_dt()
937 if (IS_ERR(bdev->pins_boot) && !bdev->boot) { in btmtkuart_parse_dt()
1020 if (bdev->boot) { in btmtkuart_probe()
1021 gpiod_set_value_cansleep(bdev->boot, 1); in btmtkuart_probe()
1050 if (bdev->boot) in btmtkuart_probe()
1051 devm_gpiod_put(&serdev->dev, bdev->boot); in btmtkuart_probe()
/drivers/net/ethernet/mellanox/mlx5/core/
Dmain.c936 static int mlx5_function_setup(struct mlx5_core_dev *dev, bool boot) in mlx5_function_setup() argument
1024 mlx5_stop_health_poll(dev, boot); in mlx5_function_setup()
1035 static int mlx5_function_teardown(struct mlx5_core_dev *dev, bool boot) in mlx5_function_teardown() argument
1039 mlx5_stop_health_poll(dev, boot); in mlx5_function_teardown()
1171 static int mlx5_load_one(struct mlx5_core_dev *dev, bool boot) in mlx5_load_one() argument
1184 err = mlx5_function_setup(dev, boot); in mlx5_load_one()
1188 if (boot) { in mlx5_load_one()
1200 if (boot) { in mlx5_load_one()
1223 if (boot) in mlx5_load_one()
1228 if (boot) in mlx5_load_one()
[all …]
Dpagealloc.c137 s32 *npages, int boot) in mlx5_cmd_query_pages() argument
144 MLX5_SET(query_pages_in, in, op_mod, boot ? in mlx5_cmd_query_pages()
487 int mlx5_satisfy_startup_pages(struct mlx5_core_dev *dev, int boot) in mlx5_satisfy_startup_pages() argument
493 err = mlx5_cmd_query_pages(dev, &func_id, &npages, boot); in mlx5_satisfy_startup_pages()
498 npages, boot ? "boot" : "init", func_id); in mlx5_satisfy_startup_pages()
/drivers/staging/mt7621-dts/
Dgbpc1.dts78 label = "u-boot";
84 label = "u-boot-env";
/drivers/firmware/
DKconfig40 will be called scmi_pm_domain. Note this may needed early in boot
81 tristate "BIOS Enhanced Disk Drive calls determine boot disk"
86 BIOS tries boot from. This information is then exported via sysfs.
88 This option is experimental and is known to fail to boot on some
124 you must specify the "console=hcdp" kernel boot argument.
177 detect iSCSI boot parameters dynamically during system boot, say Y.
228 The RSU provides a way for customers to update the boot
/drivers/firmware/efi/
DKconfig61 Saying Y here will enable "efi_fake_mem" boot option.
69 int "maximum allowable number of ranges in efi_fake_mem boot option"
74 Maximum allowable number of ranges in efi_fake_mem boot option.
114 bootloader. If the string matches one of the boot labels
115 defined in its configuration, the bootloader will boot once
/drivers/ide/
DKconfig131 If you say Y here, the CD-ROM drive will be identified at boot time
133 similar (check the boot messages with dmesg). If this is your only
162 If you say Y here, the tape drive will be identified at boot time
165 (check the boot messages with dmesg). Be sure to consult the
247 (VLB) instead of PCI, you must also supply a kernel boot parameter
249 bootparam" or see the documentation of your boot loader about how to
309 This can improve the usability of some boot managers such as lilo
483 ide-probe at boot. It is reported to support DVD II drives, by the
551 at boot-time for max-speed. Ultra33 BIOS 1.25 or newer is required
729 runtime using the "gayle.doubler" kernel boot parameter.
[all …]
/drivers/tty/hvc/
Dhvc_opal.c159 unsigned int termno, irq, boot = 0; in hvc_opal_probe() local
181 boot = 1; in hvc_opal_probe()
209 boot ? " (boot console)" : ""); in hvc_opal_probe()
/drivers/thunderbolt/
Dicm.c570 bool authorized, bool boot) in add_switch() argument
594 sw->boot = boot; in add_switch()
621 u8 link, u8 depth, bool boot) in update_switch() argument
635 sw->boot = boot; in update_switch()
704 bool boot; in icm_fr_device_connected() local
716 boot = pkg->link_info & ICM_LINK_INFO_BOOT; in icm_fr_device_connected()
759 pkg->connection_key, link, depth, boot); in icm_fr_device_connected()
817 authorized, boot); in icm_fr_device_connected()
1148 bool authorized, boot; in __icm_tr_device_connected() local
1165 boot = pkg->link_info & ICM_LINK_INFO_BOOT; in __icm_tr_device_connected()
[all …]
/drivers/gpu/drm/nouveau/include/nvkm/core/
Dmemory.h35 void (*boot)(struct nvkm_memory *, struct nvkm_vmm *); member
63 #define nvkm_memory_boot(p,v) (p)->func->boot((p),(v))
/drivers/input/touchscreen/
Dmelfas_mip4.c141 u16 boot; member
216 v->boot = get_unaligned_le16(buf + 0); in mip4_parse_fw_version()
310 ts->fw_version.boot, ts->fw_version.core, in mip4_query_device()
1220 fw_version.boot, fw_version.core, in mip4_parse_firmware()
1224 ts->fw_version.boot, ts->fw_version.core, in mip4_parse_firmware()
1228 if (fw_version.boot != 0xEEEE && fw_version.boot != 0xFFFF && in mip4_parse_firmware()
1233 } else if (fw_version.boot == 0xEEEE && in mip4_parse_firmware()
1340 ts->fw_version.boot, ts->fw_version.core, in mip4_sysfs_read_fw_version()
/drivers/scsi/
Daha152x.h266 unsigned boot:1; /* boot: 0=disabled, 1=enabled */ member
281 #define cf_boot fields.boot
/drivers/net/wireless/ti/wl1251/
DMakefile3 acx.o boot.o init.o debugfs.o io.o
/drivers/bcma/
Ddriver_chipcommon_nflash.c37 cc->nflash.boot = true; in bcma_nflash_init()
/drivers/gpu/drm/nouveau/include/nvkm/subdev/
Dinstmem.h13 struct list_head boot; member
/drivers/net/wireless/ti/wlcore/
DMakefile3 boot.o init.o debugfs.o scan.o sysfs.o vendor_cmd.o
/drivers/tty/serial/
DKconfig46 your boot loader (lilo or loadlin) about how to pass options to the
47 kernel at boot time.)
74 your boot loader (lilo or loadlin) about how to pass options to the
75 kernel at boot time.)
286 your boot loader about how to pass options to the kernel at
287 boot time.)
308 your boot loader about how to pass options to the kernel at
309 boot time.)
440 your boot loader (lilo or loadlin) about how to pass options to the
441 kernel at boot time.)
[all …]

1234