/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
H A D | init.c | 31 #include <subdev/bios/init.h> 42 nvkm_printk(init->subdev, lvl, info, "0x%08x[%c]: "fmt, \ 43 init->offset, init_exec(init) ? \ 44 '0' + (init->nested - 1) : ' ', ##args); \ 47 if (init->subdev->debug >= NV_DBG_TRACE) \ 55 * init parser control flow helpers 59 init_exec(struct nvbios_init *init) in init_exec() argument 61 return (init->execute == 1) || ((init->execute & 5) == 5); in init_exec() 65 init_exec_set(struct nvbios_init *init, bool exec) in init_exec_set() argument 67 if (exec) init->execute &= 0xfd; in init_exec_set() [all …]
|
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/ |
H A D | base.c | 30 nvkm_devinit_mmio(struct nvkm_devinit *init, u32 addr) in nvkm_devinit_mmio() argument 32 if (init->func->mmio) in nvkm_devinit_mmio() 33 addr = init->func->mmio(init, addr); in nvkm_devinit_mmio() 38 nvkm_devinit_pll_set(struct nvkm_devinit *init, u32 type, u32 khz) in nvkm_devinit_pll_set() argument 40 return init->func->pll_set(init, type, khz); in nvkm_devinit_pll_set() 44 nvkm_devinit_meminit(struct nvkm_devinit *init) in nvkm_devinit_meminit() argument 46 if (init->func->meminit) in nvkm_devinit_meminit() 47 init->func->meminit(init); in nvkm_devinit_meminit() 51 nvkm_devinit_disable(struct nvkm_devinit *init) in nvkm_devinit_disable() argument 53 if (init && init->func->disable) in nvkm_devinit_disable() [all …]
|
H A D | gm200.c | 33 pmu_code(struct nv50_devinit *init, u32 pmu, u32 img, u32 len, bool sec) in pmu_code() argument 35 struct nvkm_device *device = init->base.subdev.device; in pmu_code() 53 pmu_data(struct nv50_devinit *init, u32 pmu, u32 img, u32 len) in pmu_data() argument 55 struct nvkm_device *device = init->base.subdev.device; in pmu_data() 65 pmu_args(struct nv50_devinit *init, u32 argp, u32 argi) in pmu_args() argument 67 struct nvkm_device *device = init->base.subdev.device; in pmu_args() 74 pmu_exec(struct nv50_devinit *init, u32 init_addr) in pmu_exec() argument 76 struct nvkm_device *device = init->base.subdev.device; in pmu_exec() 83 pmu_load(struct nv50_devinit *init, u8 type, bool post, in pmu_load() argument 86 struct nvkm_subdev *subdev = &init->base.subdev; in pmu_load() [all …]
|
/openbmc/openbmc/poky/meta/recipes-core/initrdscripts/ |
H A D | initramfs-framework_1.0.bb | 10 SRC_URI = "file://init \ 27 install -d ${D}/init.d 30 install -m 0755 ${S}/init ${D}/init 31 install -m 0755 ${S}/nfsrootfs ${D}/init.d/85-nfsrootfs 32 install -m 0755 ${S}/rootfs ${D}/init.d/90-rootfs 33 install -m 0755 ${S}/finish ${D}/init.d/99-finish 36 install -m 0755 ${S}/exec ${D}/init.d/89-exec 39 install -m 0755 ${S}/mdev ${D}/init.d/01-mdev 42 install -m 0755 ${S}/udev ${D}/init.d/01-udev 45 install -m 0755 ${S}/e2fs ${D}/init.d/10-e2fs [all …]
|
/openbmc/sdbusplus/include/sdbusplus/async/ |
H A D | callback.hpp | 20 template <takes_msg_handler Init> 31 * The `Init` function is a simple indirect so that the library sd_bus 50 template <callback_ns::takes_msg_handler Init> 51 auto callback(Init i) in callback() 53 return callback_ns::callback_sender<Init>(std::move(i)); in callback() 60 template <takes_msg_handler Init, execution::receiver R> 66 callback_operation(Init&& init, R&& r) : in callback_operation() 67 init(std::move(init)), receiver(std::move(r)) in callback_operation() 102 // Call the init function upon Sender start. 108 auto rc = self.init(handler, &self); in tag_invoke() [all …]
|
/openbmc/linux/drivers/clk/socfpga/ |
H A D | clk-periph-s10.c | 106 struct clk_init_data init; in s10_register_periph() local 117 init.name = name; in s10_register_periph() 118 init.ops = &peri_c_clk_ops; in s10_register_periph() 119 init.flags = clks->flags; in s10_register_periph() 121 init.num_parents = clks->num_parents; in s10_register_periph() 122 init.parent_names = parent_name ? &parent_name : NULL; in s10_register_periph() 123 if (init.parent_names == NULL) in s10_register_periph() 124 init.parent_data = clks->parent_data; in s10_register_periph() 126 periph_clk->hw.hw.init = &init; in s10_register_periph() 142 struct clk_init_data init; in n5x_register_periph() local [all …]
|
H A D | clk-pll-s10.c | 195 struct clk_init_data init; in s10_register_pll() local 206 init.ops = &clk_boot_ops; in s10_register_pll() 208 init.ops = &clk_pll_ops; in s10_register_pll() 210 init.name = name; in s10_register_pll() 211 init.flags = clks->flags; in s10_register_pll() 213 init.num_parents = clks->num_parents; in s10_register_pll() 214 init.parent_names = NULL; in s10_register_pll() 215 init.parent_data = clks->parent_data; in s10_register_pll() 216 pll_clk->hw.hw.init = &init; in s10_register_pll() 235 struct clk_init_data init; in agilex_register_pll() local [all …]
|
H A D | clk-gate-s10.c | 131 struct clk_init_data init; in s10_register_gate() local 162 init.ops = &dbgclk_ops; in s10_register_gate() 164 init.ops = &gateclk_ops; in s10_register_gate() 166 init.name = clks->name; in s10_register_gate() 167 init.flags = clks->flags; in s10_register_gate() 169 init.num_parents = clks->num_parents; in s10_register_gate() 170 init.parent_names = parent_name ? &parent_name : NULL; in s10_register_gate() 171 if (init.parent_names == NULL) in s10_register_gate() 172 init.parent_data = clks->parent_data; in s10_register_gate() 173 socfpga_clk->hw.hw.init = &init; in s10_register_gate() [all …]
|
/openbmc/linux/arch/um/drivers/ |
H A D | umcast_kern.c | 14 #include <linux/init.h> 31 struct umcast_init *init = data; in umcast_init() local 35 dpri->addr = init->addr; in umcast_init() 36 dpri->lport = init->lport; in umcast_init() 37 dpri->rport = init->rport; in umcast_init() 38 dpri->unicast = init->unicast; in umcast_init() 39 dpri->ttl = init->ttl; in umcast_init() 64 .init = umcast_init, 72 struct umcast_init *init = data; in mcast_setup() local 76 *init = ((struct umcast_init) in mcast_setup() [all …]
|
H A D | pcap_kern.c | 6 #include <linux/init.h> 22 struct pcap_init *init = data; in pcap_init_kern() local 26 ppri->host_if = init->host_if; in pcap_init_kern() 27 ppri->promisc = init->promisc; in pcap_init_kern() 28 ppri->optimize = init->optimize; in pcap_init_kern() 29 ppri->filter = init->filter; in pcap_init_kern() 47 .init = pcap_init_kern, 55 struct pcap_init *init = data; in pcap_setup() local 59 *init = ((struct pcap_init) in pcap_setup() 65 remain = split_if_spec(str, &host_if, &init->filter, in pcap_setup() [all …]
|
H A D | vde_kern.c | 10 #include <linux/init.h> 18 struct vde_init *init = data; in vde_init() local 25 vpri->vde_switch = init->vde_switch; in vde_init() 26 vpri->descr = init->descr ? init->descr : "UML vde_transport"; in vde_init() 34 vde_init_libstuff(vpri, init); in vde_init() 64 .init = vde_init, 72 struct vde_init *init = data; in vde_setup() local 75 *init = ((struct vde_init) in vde_setup() 82 remain = split_if_spec(str, &init->vde_switch, mac_out, &port_str, in vde_setup() 83 &init->group, &mode_str, &init->descr, NULL); in vde_setup() [all …]
|
/openbmc/linux/Documentation/arch/ia64/ |
H A D | mca.rst | 2 An ad-hoc collection of notes on IA64 MCA and INIT processing 9 MCA/INIT are completely asynchronous. They can occur at any time, when 11 holding a spinlock. Trying to get any lock from MCA/INIT state is 32 sends an unmaskable INIT event to the slave cpus that have not 35 * Because MCA/INIT can be delivered at any time, including when the cpu 37 event are _completely_ undefined. In particular the MCA/INIT 40 TP on return. However MCA/INIT events expose us to these PAL 43 * If an MCA/INIT event occurs while the kernel was running (not user 44 space) and the kernel has called PAL then the MCA/INIT handler cannot 47 Because the MCA/INIT handlers cannot trust the kernel stack, they [all …]
|
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/therm/ |
H A D | gf100.c | 28 #define pack_for_each_init(init, pack, head) \ argument 29 for (pack = head; pack && pack->init; pack++) \ 30 for (init = pack->init; init && init->count; init++) 37 const struct nvkm_therm_clkgate_init *init; in gf100_clkgate_init() local 40 pack_for_each_init(init, pack, p) { in gf100_clkgate_init() 41 next = init->addr + init->count * 8; in gf100_clkgate_init() 42 addr = init->addr; in gf100_clkgate_init() 45 init->addr, init->count, init->data); in gf100_clkgate_init() 48 addr, init->data); in gf100_clkgate_init() 49 nvkm_wr32(device, addr, init->data); in gf100_clkgate_init()
|
/openbmc/linux/drivers/clk/stm32/ |
H A D | clk-stm32mp13.c | 646 .hw.init = CLK_HW_INIT("tim2_k", "timg1_ck", &clk_stm32_gate_ops, CLK_SET_RATE_PARENT), 651 .hw.init = CLK_HW_INIT("tim3_k", "timg1_ck", &clk_stm32_gate_ops, CLK_SET_RATE_PARENT), 656 .hw.init = CLK_HW_INIT("tim4_k", "timg1_ck", &clk_stm32_gate_ops, CLK_SET_RATE_PARENT), 661 .hw.init = CLK_HW_INIT("tim5_k", "timg1_ck", &clk_stm32_gate_ops, CLK_SET_RATE_PARENT), 666 .hw.init = CLK_HW_INIT("tim6_k", "timg1_ck", &clk_stm32_gate_ops, CLK_SET_RATE_PARENT), 671 .hw.init = CLK_HW_INIT("tim7_k", "timg1_ck", &clk_stm32_gate_ops, CLK_SET_RATE_PARENT), 676 .hw.init = CLK_HW_INIT("tim1_k", "timg2_ck", &clk_stm32_gate_ops, CLK_SET_RATE_PARENT), 681 .hw.init = CLK_HW_INIT("tim8_k", "timg2_ck", &clk_stm32_gate_ops, CLK_SET_RATE_PARENT), 686 .hw.init = CLK_HW_INIT("tim12_k", "timg3_ck", &clk_stm32_gate_ops, CLK_SET_RATE_PARENT), 691 .hw.init = CLK_HW_INIT("tim13_k", "timg3_ck", &clk_stm32_gate_ops, CLK_SET_RATE_PARENT), [all …]
|
/openbmc/linux/drivers/clk/ti/ |
H A D | apll.c | 136 const struct clk_init_data *init = clk_hw->hw.init; in omap_clk_register_apll() local 166 kfree(init->parent_names); in omap_clk_register_apll() 167 kfree(init); in omap_clk_register_apll() 173 kfree(init->parent_names); in omap_clk_register_apll() 174 kfree(init); in omap_clk_register_apll() 182 struct clk_init_data *init = NULL; in of_dra7_apll_setup() local 188 init = kzalloc(sizeof(*init), GFP_KERNEL); in of_dra7_apll_setup() 189 if (!ad || !clk_hw || !init) in of_dra7_apll_setup() 193 clk_hw->hw.init = init; in of_dra7_apll_setup() 195 init->name = ti_dt_clk_name(node); in of_dra7_apll_setup() [all …]
|
/openbmc/linux/drivers/gpu/drm/i915/ |
H A D | i915_module.c | 48 int (*init)(void); member 51 { .init = i915_check_nomodeset }, 52 { .init = i915_active_module_init, 54 { .init = i915_context_module_init, 56 { .init = i915_gem_context_module_init, 58 { .init = i915_objects_module_init, 60 { .init = i915_request_module_init, 62 { .init = i915_scheduler_module_init, 64 { .init = i915_vma_module_init, 66 { .init = i915_vma_resource_module_init, [all …]
|
/openbmc/linux/drivers/clk/at91/ |
H A D | clk-main.c | 159 struct clk_init_data init = {}; in at91_clk_register_main_osc() local 170 init.name = name; in at91_clk_register_main_osc() 171 init.ops = &main_osc_ops; in at91_clk_register_main_osc() 173 init.parent_data = (const struct clk_parent_data *)parent_data; in at91_clk_register_main_osc() 175 init.parent_names = &parent_name; in at91_clk_register_main_osc() 176 init.num_parents = 1; in at91_clk_register_main_osc() 177 init.flags = CLK_IGNORE_UNUSED; in at91_clk_register_main_osc() 179 osc->hw.init = &init; in at91_clk_register_main_osc() 302 struct clk_init_data init; in at91_clk_register_main_rc_osc() local 313 init.name = name; in at91_clk_register_main_rc_osc() [all …]
|
/openbmc/linux/drivers/clk/qcom/ |
H A D | gcc-msm8996.c | 38 .hw.init = &(struct clk_init_data){ 54 .hw.init = &(struct clk_init_data){ 68 .hw.init = &(struct clk_init_data){ 81 .clkr.hw.init = &(struct clk_init_data){ 96 .hw.init = &(struct clk_init_data){ 113 .hw.init = &(struct clk_init_data){ 131 .hw.init = &(struct clk_init_data){ 145 .clkr.hw.init = &(struct clk_init_data){ 260 .clkr.hw.init = &(struct clk_init_data){ 278 .clkr.hw.init = &(struct clk_init_data){ [all …]
|
H A D | gcc-sc8280xp.c | 118 .hw.init = &(const struct clk_init_data) { 139 .clkr.hw.init = &(const struct clk_init_data) { 155 .hw.init = &(const struct clk_init_data) { 170 .hw.init = &(const struct clk_init_data) { 185 .hw.init = &(const struct clk_init_data) { 200 .hw.init = &(const struct clk_init_data) { 215 .hw.init = &(const struct clk_init_data) { 453 .hw.init = &(const struct clk_init_data) { 468 .hw.init = &(const struct clk_init_data) { 557 .hw.init = &(const struct clk_init_data) { [all …]
|
H A D | gcc-sm8250.c | 41 .hw.init = &(struct clk_init_data){ 64 .clkr.hw.init = &(struct clk_init_data){ 80 .hw.init = &(struct clk_init_data){ 97 .hw.init = &(struct clk_init_data){ 199 .clkr.hw.init = &(struct clk_init_data){ 223 .clkr.hw.init = &(struct clk_init_data){ 237 .clkr.hw.init = &(struct clk_init_data){ 251 .clkr.hw.init = &(struct clk_init_data){ 271 .clkr.hw.init = &(struct clk_init_data){ 285 .clkr.hw.init = &(struct clk_init_data){ [all …]
|
H A D | gcc-msm8917.c | 60 .hw.init = &(struct clk_init_data){ 77 .hw.init = &(struct clk_init_data) { 91 .clkr.hw.init = &(struct clk_init_data){ 120 .hw.init = &(struct clk_init_data){ 134 .clkr.hw.init = &(struct clk_init_data){ 151 .hw.init = &(struct clk_init_data){ 165 .clkr.hw.init = &(struct clk_init_data){ 183 .clkr.hw.init = &(struct clk_init_data){ 196 .hw.init = &(struct clk_init_data){ 262 .clkr.hw.init = &(struct clk_init_data) { [all …]
|
H A D | gcc-sm8450.c | 45 .hw.init = &(struct clk_init_data){ 68 .clkr.hw.init = &(struct clk_init_data){ 84 .hw.init = &(struct clk_init_data){ 101 .hw.init = &(struct clk_init_data){ 225 .hw.init = &(struct clk_init_data){ 242 .hw.init = &(struct clk_init_data){ 254 .hw.init = &(struct clk_init_data){ 271 .hw.init = &(struct clk_init_data){ 286 .hw.init = &(struct clk_init_data){ 301 .hw.init = &(struct clk_init_data){ [all …]
|
/openbmc/linux/drivers/scsi/aacraid/ |
H A D | comminit.c | 21 #include <linux/init.h> 62 union aac_init *init; in aac_alloc_comm() local 105 dev->init = (union aac_init *)(base + fibsize + host_rrq_size); in aac_alloc_comm() 108 init = dev->init; in aac_alloc_comm() 114 init->r8.init_struct_revision = in aac_alloc_comm() 116 init->r8.init_flags = cpu_to_le32(INITFLAGS_NEW_COMM_SUPPORTED | in aac_alloc_comm() 119 init->r8.init_flags |= in aac_alloc_comm() 121 init->r8.rr_queue_count = cpu_to_le32(dev->max_msix); in aac_alloc_comm() 122 init->r8.max_io_size = in aac_alloc_comm() 124 init->r8.max_num_aif = init->r8.reserved1 = in aac_alloc_comm() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/ippool/ippool/ |
H A D | ippool_init.d.patch | 1 Fix start error if lsb init-functions doesn't exist 7 diff --git a/debian/init.d b/debian/init.d 9 --- a/debian/init.d 10 +++ b/debian/init.d 13 ### END INIT INFO 16 +. /etc/init.d/functions 25 -. /lib/lsb/init-functions 26 +if [ -f /lib/lsb/init-functions ] 28 + . /lib/lsb/init-functions 61 - log_success_msg "Usage: /etc/init.d/ippoold {start|stop|restart|reload|force-reload}" [all …]
|
/openbmc/openbmc/poky/meta/recipes-core/initscripts/ |
H A D | initscripts_1.0.bb | 1 SUMMARY = "SysV init scripts" 52 init-system-helpers-service \ 58 FILES:${PN}-functions = "${sysconfdir}/init.d/functions*" 74 install -d ${D}${sysconfdir}/init.d 88 install -m 0644 ${S}/functions ${D}${sysconfdir}/init.d 89 install -m 0755 ${S}/bootmisc.sh ${D}${sysconfdir}/init.d 90 install -m 0755 ${S}/checkroot.sh ${D}${sysconfdir}/init.d 91 install -m 0755 ${S}/halt ${D}${sysconfdir}/init.d 92 install -m 0755 ${S}/hostname.sh ${D}${sysconfdir}/init.d 93 install -m 0755 ${S}/mountall.sh ${D}${sysconfdir}/init.d [all …]
|