| /linux/arch/riscv/boot/ |
| H A D | Makefile | 20 targets := Image Image.* loader loader.o loader.lds loader.bin 28 $(obj)/loader.o: $(src)/loader.S $(obj)/Image 30 $(obj)/loader: $(obj)/loader.o $(obj)/Image $(obj)/loader.lds FORCE 31 $(Q)$(LD) -T $(obj)/loader.lds -o $@ $(obj)/loader.o 51 $(obj)/loader.bin: $(obj)/loader FORCE
|
| H A D | .gitignore | 4 loader 5 loader.lds 6 loader.bin
|
| /linux/arch/arm/boot/dts/intel/axm/ |
| H A D | axm5516-cpus.dtsi | 77 cpu-release-addr = <0>; // Fixed by the boot loader 85 cpu-release-addr = <0>; // Fixed by the boot loader 93 cpu-release-addr = <0>; // Fixed by the boot loader 101 cpu-release-addr = <0>; // Fixed by the boot loader 109 cpu-release-addr = <0>; // Fixed by the boot loader 117 cpu-release-addr = <0>; // Fixed by the boot loader 125 cpu-release-addr = <0>; // Fixed by the boot loader 133 cpu-release-addr = <0>; // Fixed by the boot loader 141 cpu-release-addr = <0>; // Fixed by the boot loader 149 cpu-release-addr = <0>; // Fixed by the boot loader [all …]
|
| /linux/arch/arm/mach-rpc/ |
| H A D | ecard-loader.S | 16 @ Purpose: call an expansion card loader to read bytes. 17 @ Proto : char read_loader(int offset, char *card_base, char *loader); 29 @ Purpose: call an expansion card loader to reset the card 30 @ Proto : void read_loader(int card_base, char *loader);
|
| H A D | ecard.c | 88 ecard_loader_reset(unsigned long base, loader_t loader); 90 ecard_loader_read(int off, unsigned long base, loader_t loader); 130 ecard_loader_reset(res->start, ec->loader); in ecard_task_reset() 186 if (!req->use_loader || !ec->loader) { in ecard_task_readbytes() 200 ec->loader); in ecard_task_readbytes() 339 if (!useld && ec->loader) { in ecard_readchunk() 351 if (!ec->loader) { in ecard_readchunk() 352 ec->loader = kmalloc(c_len(&excd), in ecard_readchunk() 354 if (ec->loader) in ecard_readchunk() 355 ecard_readbytes(ec->loader, ec, in ecard_readchunk() [all …]
|
| /linux/arch/arm64/boot/dts/apple/ |
| H A D | t8011-common.dtsi | 24 reg = <0 0 0 0>; /* To be filled by loader */ 26 /* Format properties will be added by loader */ 33 reg = <0x8 0 0 0>; /* To be filled by loader */ 41 /* To be filled by loader */
|
| H A D | s8001-common.dtsi | 26 reg = <0 0 0 0>; /* To be filled by loader */ 28 /* Format properties will be added by loader */ 35 reg = <0x8 0 0 0>; /* To be filled by loader */ 43 /* To be filled by loader */
|
| H A D | t8015-common.dtsi | 26 reg = <0 0 0 0>; /* To be filled by loader */ 28 /* Format properties will be added by loader */ 35 reg = <0x8 0 0 0>; /* To be filled by loader */ 43 /* To be filled by loader */
|
| H A D | s800-0-3-common.dtsi | 26 reg = <0 0 0 0>; /* To be filled by loader */ 27 /* Format properties will be added by loader */ 34 reg = <0x8 0 0 0>; /* To be filled by loader */ 42 /* To be filled by loader */
|
| H A D | t8010-common.dtsi | 26 reg = <0 0 0 0>; /* To be filled by loader */ 27 /* Format properties will be added by loader */ 34 reg = <0x8 0 0 0>; /* To be filled by loader */ 42 /* To be filled by loader */
|
| H A D | t7001-air2.dtsi | 22 reg = <0 0 0 0>; /* To be filled by loader */ 24 /* Format properties will be added by loader */ 61 reg = <0x8 0 0 0>; /* To be filled by loader */ 69 /* To be filled by loader */
|
| H A D | t600x-common.dtsi | 68 cpu-release-addr = <0 0>; /* To be filled by loader */ 82 cpu-release-addr = <0 0>; /* To be filled by loader */ 96 cpu-release-addr = <0 0>; /* To be filled by loader */ 110 cpu-release-addr = <0 0>; /* To be filled by loader */ 124 cpu-release-addr = <0 0>; /* To be filled by loader */ 138 cpu-release-addr = <0 0>; /* To be filled by loader */ 152 cpu-release-addr = <0 0>; /* To be filled by loader */ 166 cpu-release-addr = <0 0>; /* To be filled by loader */ 180 cpu-release-addr = <0 0>; /* To be filled by loader */ 194 cpu-release-addr = <0 0>; /* To be filled by loader */
|
| H A D | t8012-touchbar.dtsi | 14 reg = <0 0 0 0>; /* To be filled by loader */ 16 /* Format properties will be added by loader */
|
| H A D | t7000-handheld.dtsi | 18 reg = <0 0 0 0>; /* To be filled by loader */ 19 /* Format properties will be added by loader */
|
| H A D | t7000-j42d.dts | 22 reg = <0 0 0 0>; /* To be filled by loader */ 24 /* Format properties will be added by loader */
|
| H A D | t8012-jxxx.dtsi | 30 reg = <0x8 0 0 0>; /* To be filled by loader */ 38 /* To be filled by loader */
|
| /linux/drivers/hid/intel-ish-hid/ |
| H A D | Makefile | 14 intel-ishtp-objs += ishtp/loader.o 24 obj-$(CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER) += intel-ishtp-loader.o 25 intel-ishtp-loader-objs += ishtp-fw-loader.o
|
| /linux/Documentation/arch/arm/ |
| H A D | booting.rst | 11 In order to boot ARM Linux, you require a boot loader, which is a small 12 program that runs before the main kernel. The boot loader is expected 16 Essentially, the boot loader should provide (as a minimum) the 35 The boot loader is expected to find and initialise all RAM that the 39 the RAM in the machine, or any other method the boot loader designer 51 The boot loader should initialise and enable one serial port on the 56 As an alternative, the boot loader can pass the relevant 'console=' 71 The boot loader should detect the machine type its running on by some 74 The boot loader must ultimately be able to provide a MACH_TYPE_xxx 90 The boot loader must provide either a tagged list or a dtb image for [all …]
|
| /linux/Documentation/arch/x86/ |
| H A D | boot.rst | 22 boot loader and the kernel. setup.S made relocatable, 59 pref_address fields. Added extended boot loader IDs. 86 features to the boot loader. Due to very limited space available in 89 communicate things to the boot loader is the kernel_info. 95 The traditional memory map for the kernel loader, used for Image or 111 | Boot loader | <- Boot sector entry point 0000:7C00 128 low memory touched by the boot loader -- as low as possible, since 131 memory. The boot loader should use the "INT 12h" BIOS call to verify 135 low, there is usually nothing the boot loader can do but to report an 136 error to the user. The boot loader should therefore be designed to [all …]
|
| /linux/Documentation/bpf/ |
| H A D | signing.rst | 27 ``kernel.unprivileged_bpf_disabled``), and the loader's instructions are still 55 The trusted loader 59 **loader** - and sign the loader instead of the individual programs. libbpf's 67 So the unit of trust is the loader, and the signing contract is:: 71 where ``I_loader`` is the loader's instruction stream and ``D_meta`` is the 72 content of the metadata map. Verifying the loader's signature establishes that 73 both the loader *and* the payload it is about to install are authentic. The 74 loader is reproducible: ``gen_loader`` builds it from primitives so the same 77 Why the loader is signable when the program is not 80 The loader sidesteps every rewrite listed above, because the bytes that are [all …]
|
| /linux/arch/riscv/ |
| H A D | Makefile | 144 boot-image-$(CONFIG_SOC_CANAAN_K210) := loader.bin 169 … Image.gz Image.bz2 Image.lz4 Image.lzma Image.lzo Image.zst Image.xz loader loader.bin vmlinuz.efi 173 loader.bin: loader 174 Image.gz Image.bz2 Image.lz4 Image.lzma Image.lzo Image.zst Image.xz loader vmlinuz.efi: Image target
|
| /linux/Documentation/livepatch/ |
| H A D | module-elf-format.rst | 18 exists in the module loader, so this former approach produced redundant 20 loader can already do, livepatch leverages existing code in the module 21 loader to perform the all the arch-specific relocation work. Specifically, 22 livepatch reuses the apply_relocate_add() function in the module loader to 41 since the kernel module loader cannot resolve them and will therefore 64 used by the kernel module loader to identify livepatch modules. 112 loader recognizes this flag and will avoid applying those relocation sections 114 so that the module loader doesn't discard them on module load (i.e. they will 192 objects, whose addresses cannot be resolved by the module loader (because 193 they are local or unexported global syms). Since the module loader only [all …]
|
| /linux/sound/soc/sof/ |
| H A D | Makefile | 3 snd-sof-y := core.o ops.o loader.o ipc.o pcm.o pm.o debug.o topology.o\ 9 snd-sof-y += ipc3.o ipc3-loader.o ipc3-topology.o ipc3-control.o ipc3-pcm.o\ 13 snd-sof-y += ipc4.o ipc4-loader.o ipc4-topology.o ipc4-control.o ipc4-pcm.o\
|
| /linux/security/tomoyo/ |
| H A D | Kconfig | 41 bool "Activate without calling userspace policy loader." 57 string "Location of userspace policy loader" 62 This is the default pathname of policy loader which is called before 67 string "Trigger for calling userspace policy loader"
|
| /linux/arch/powerpc/boot/dts/ |
| H A D | a4m072.dts | 29 bus-frequency = <0>; /* From boot loader */ 30 system-frequency = <0>; /* From boot loader */ 140 clock-frequency = <0>; /* From boot loader */
|