/arch/m68k/ |
D | Makefile | 43 cpuflags-$(CONFIG_M5441x) := $(call cc-option,-mcpu=54455,-mcfv4e) 44 cpuflags-$(CONFIG_M54xx) := $(call cc-option,-mcpu=5475,-m5200) 45 cpuflags-$(CONFIG_M5407) := $(call cc-option,-mcpu=5407,-m5200) 46 cpuflags-$(CONFIG_M532x) := $(call cc-option,-mcpu=532x,-m5307) 47 cpuflags-$(CONFIG_M537x) := $(call cc-option,-mcpu=537x,-m5307) 48 cpuflags-$(CONFIG_M5307) := $(call cc-option,-mcpu=5307,-m5200) 49 cpuflags-$(CONFIG_M528x) := $(call cc-option,-mcpu=528x,-m5307) 50 cpuflags-$(CONFIG_M5275) := $(call cc-option,-mcpu=5275,-m5307) 51 cpuflags-$(CONFIG_M5272) := $(call cc-option,-mcpu=5272,-m5307) 52 cpuflags-$(CONFIG_M5271) := $(call cc-option,-mcpu=5271,-m5307) [all …]
|
/arch/x86/ |
D | Makefile | 17 ifneq ($(call cc-option, -mpreferred-stack-boundary=4),) 20 else ifneq ($(call cc-option, -mstack-alignment=16),) 32 M16_CFLAGS := $(call cc-option, -m16, $(CODE16GCC_CFLAGS)) 37 -mno-mmx -mno-sse $(call cc-option,-fcf-protection=none) 39 REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), -ffreestanding) 40 REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), -fno-stack-protector) 41 REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), -Wno-address-of-packed-member) 42 REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), $(cc_stack_align4)) 63 KBUILD_CFLAGS += $(call cc-option,-mno-avx,) 66 KBUILD_CFLAGS += $(call cc-option,-fcf-protection=none) [all …]
|
D | Makefile_32.cpu | 6 HAS_MTUNE := $(call cc-option-yn, -mtune=i386) 8 tune = $(call cc-option,-mtune=$(1),$(2)) 10 tune = $(call cc-option,-mcpu=$(1),$(2)) 26 cflags-$(CONFIG_MK8) += $(call cc-option,-march=k8,-march=athlon) 29 cflags-$(CONFIG_MWINCHIPC6) += $(call cc-option,-march=winchip-c6,-march=i586) 30 cflags-$(CONFIG_MWINCHIP3D) += $(call cc-option,-march=winchip2,-march=i586) 31 cflags-$(CONFIG_MCYRIXIII) += $(call cc-option,-march=c3,-march=i486) -falign-functions=0 -falign-j… 32 cflags-$(CONFIG_MVIAC3_2) += $(call cc-option,-march=c3-2,-march=i686) 35 cflags-$(CONFIG_MATOM) += $(call cc-option,-march=atom,$(call cc-option,-march=core2,-march=i686))… 36 $(call cc-option,-mtune=atom,$(call cc-option,-mtune=generic)) [all …]
|
D | Makefile.um | 12 KBUILD_CFLAGS += $(call cc-option,-m32) 13 KBUILD_AFLAGS += $(call cc-option,-m32) 14 LINK-y += $(call cc-option,-m32) 23 cflags-y += $(call cc-option,-mpreferred-stack-boundary=2)
|
/arch/powerpc/ |
D | Makefile | 15 HAS_BIARCH := $(call cc-option-yn, -m32) 67 KBUILD_CFLAGS_MODULE += $(call cc-option,-mno-save-toc-indirect) 69 KBUILD_CFLAGS += $(call cc-option,-mbig-endian) 78 cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mabi=elfv1) 79 cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mcall-aixdesc) 80 aflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mabi=elfv1) 89 cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mbig-endian) 91 aflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mbig-endian) 110 LDFLAGS_vmlinux += $(call ld-option,--orphan-handling=warn) 113 ifeq ($(call cc-option-yn,-mcmodel=medium),y) [all …]
|
/arch/x86/lib/ |
D | cmdline.c | 29 const char *option) in __cmdline_find_option_bool() argument 59 opptr = option; in __cmdline_find_option_bool() 122 const char *option, char *buffer, int bufsize) in __cmdline_find_option() argument 153 opptr = option; in __cmdline_find_option() 204 int cmdline_find_option_bool(const char *cmdline, const char *option) in cmdline_find_option_bool() argument 206 return __cmdline_find_option_bool(cmdline, COMMAND_LINE_SIZE, option); in cmdline_find_option_bool() 209 int cmdline_find_option(const char *cmdline, const char *option, char *buffer, in cmdline_find_option() argument 212 return __cmdline_find_option(cmdline, COMMAND_LINE_SIZE, option, in cmdline_find_option()
|
/arch/powerpc/platforms/85xx/ |
D | Kconfig | 23 When selected, this option enables cache-sram support 26 parameters should be passed when this option is enabled. 32 This option enables support for the Freescale BSC9131RDB board. 41 This option enables support for the C293PCIE board 47 This option enables support for the Freescale BSC9132 QDS board. 56 This option enables support for the MPC 8540 ADS board 63 This option enables support for the MPC 8560 ADS board 71 This option enables support for the MPC85xx CDS board 80 This option enables support for the MPC85xx MDS board 87 This option enables support for the MPC8536 DS board [all …]
|
/arch/x86/um/ |
D | syscalls_64.c | 16 long arch_prctl(struct task_struct *task, int option, in arch_prctl() argument 36 switch (option) { in arch_prctl() 56 ret = os_arch_prctl(pid, option, ptr); in arch_prctl() 60 switch (option) { in arch_prctl() 79 SYSCALL_DEFINE2(arch_prctl, int, option, unsigned long, arg2) in SYSCALL_DEFINE2() argument 81 return arch_prctl(current, option, (unsigned long __user *) arg2); in SYSCALL_DEFINE2()
|
/arch/x86/boot/compressed/ |
D | cmdline.c | 23 int cmdline_find_option(const char *option, char *buffer, int bufsize) in cmdline_find_option() argument 25 return __cmdline_find_option(get_cmd_line_ptr(), option, buffer, bufsize); in cmdline_find_option() 27 int cmdline_find_option_bool(const char *option) in cmdline_find_option_bool() argument 29 return __cmdline_find_option_bool(get_cmd_line_ptr(), option); in cmdline_find_option_bool()
|
/arch/sh/ |
D | Makefile | 39 cflags-$(CONFIG_CPU_SH2) := $(call cc-option,-m2,) 40 cflags-$(CONFIG_CPU_J2) += $(call cc-option,-mj2,) 41 cflags-$(CONFIG_CPU_SH2A) += $(call cc-option,-m2a,) \ 42 $(call cc-option,-m2a-nofpu,) \ 43 $(call cc-option,-m4-nofpu,) 44 cflags-$(CONFIG_CPU_SH3) := $(call cc-option,-m3,) 45 cflags-$(CONFIG_CPU_SH4) := $(call cc-option,-m4,) \ 46 $(call cc-option,-mno-implicit-fp,-m4-nofpu) 47 cflags-$(CONFIG_CPU_SH4A) += $(call cc-option,-m4a,) \ 48 $(call cc-option,-m4a-nofpu,) [all …]
|
/arch/nds32/ |
D | Makefile | 12 KBUILD_CFLAGS += $(call cc-option, -mno-sched-prolog-epilog) 39 KBUILD_CFLAGS += $(call cc-option, -EL) 40 KBUILD_AFLAGS += $(call cc-option, -EL) 41 KBUILD_LDFLAGS += $(call cc-option, -EL) 44 KBUILD_CFLAGS += $(call cc-option, -EB) 45 KBUILD_AFLAGS += $(call cc-option, -EB) 46 KBUILD_LDFLAGS += $(call cc-option, -EB)
|
/arch/arm/include/asm/ |
D | barrier.h | 19 #define isb(option) __asm__ __volatile__ ("isb " #option : : : "memory") argument 20 #define dsb(option) __asm__ __volatile__ ("dsb " #option : : : "memory") argument 21 #define dmb(option) __asm__ __volatile__ ("dmb " #option : : : "memory") argument
|
/arch/mips/loongson64/ |
D | Platform | 8 $(call cc-option,-march=loongson2e,-march=r4600) 10 $(call cc-option,-march=loongson2f,-march=r4600) 13 ifeq ($(call as-option,-Wa$(comma)-mfix-loongson2f-nop,),) 14 $(error only binutils >= 2.20.2 have needed option -mfix-loongson2f-nop) 18 ifeq ($(call as-option,-Wa$(comma)-mfix-loongson2f-jump,),) 19 $(error only binutils >= 2.20.2 have needed option -mfix-loongson2f-jump) 47 cflags-$(CONFIG_CPU_LOONGSON3) += $(call as-option,-Wa$(comma)-mno-fix-loongson3-llsc,) 53 # by GAS. The cc-option can't probe for this behaviour so -march=loongson3a 59 $(call cc-option,-march=loongson3a -U_MIPS_ISA -D_MIPS_ISA=_MIPS_ISA_MIPS64) 62 $(call cc-option,-march=mips64r2,-mips64r2 -U_MIPS_ISA -D_MIPS_ISA=_MIPS_ISA_MIPS64) [all …]
|
/arch/powerpc/platforms/44x/ |
D | Kconfig | 7 This option enables support for the 47x family of processors and is 17 This option enables support for the IBM PPC440EP evaluation board. 30 This option enables support for the APM APM821xx Evaluation board. 40 This option enables support for the IBM PPC440GP evaluation board. 48 This option enables support for the ACube Sam440ep board. 56 This option enables support for the AMCC PPC440EPX evaluation board. 65 This option enables support for the AMCC PPC440GX "Taishan" 78 This option enables support for the AMCC PPC440SPe evaluation board. 87 This option enables support for the AMCC PPC440GRX evaluation board. 94 This option enables support for the PIKA Warp(tm) Appliance. The Warp [all …]
|
/arch/powerpc/platforms/83xx/ |
D | Kconfig | 19 This option enables support for the MPC8308 RDB and MPC8308 P1M boards. 26 This option enables support for the MPC8313 RDB and MPC8315 RDB boards. 33 This option enables support for the MPC832x MDS evaluation board. 40 This option enables support for the MPC8323 RDB board. 47 This option enables support for the MPC 834x MDS evaluation board. 59 This option enables support for the MPC 834x ITX evaluation board. 68 This option enables support for the MPC836x MDS Processor Board. 76 This option enables support for the MPC836x RDK Processor Board, 84 This option enables support for the MPC837x MDS Processor Board. 91 This option enables support for the MPC837x RDB and WLAN Boards.
|
/arch/powerpc/platforms/86xx/ |
D | Kconfig | 21 This option enables support for the MPC8641 HPCN board. 27 This option enables support for the WRS SBC8641D board. 34 This option enables support for the MPC8610 HPCD board. 43 This option enables support for the GE PPC9A. 52 This option enables support for the GE SBC310. 62 This option enables support for the GE SBC610. 67 This option enables support for the Emerson/Artesyn MVME7100 board.
|
/arch/openrisc/ |
D | Makefile | 28 KBUILD_CFLAGS += $(call cc-option,-mhard-mul) 30 KBUILD_CFLAGS += $(call cc-option,-msoft-mul) 34 KBUILD_CFLAGS += $(call cc-option,-mhard-div) 36 KBUILD_CFLAGS += $(call cc-option,-msoft-div)
|
/arch/powerpc/platforms/40x/ |
D | Kconfig | 8 This option enables support for the AMCC 405EZ Acadia evaluation board. 16 This option enables support for the EP405/EP405PC boards. 24 This option enables support for the ESTEEM 195E Hotfoot board. 36 This option enables support for the AMCC PPC405EX evaluation board. 46 This option enables support for the AMCC PPC405EX board. 56 This option enables support for the IBM PPC405GP evaluation board. 65 This option enables generic support for Xilinx Virtex based boards. 81 This option enables support for PlatHome OpenBlockS 600 server 87 This option enables the simple PowerPC 40x platform support. 153 This option enables support for the AppliedMicro APM8018X evaluation
|
/arch/powerpc/platforms/powernv/ |
D | eeh-powernv.c | 486 static int pnv_eeh_set_option(struct eeh_pe *pe, int option) in pnv_eeh_set_option() argument 494 switch (option) { in pnv_eeh_set_option() 510 pr_warn("%s: Invalid option %d\n", __func__, option); in pnv_eeh_set_option() 539 __func__, rc, option, phb->hose->global_number, in pnv_eeh_set_option() 764 int pnv_eeh_phb_reset(struct pci_controller *hose, int option) in pnv_eeh_phb_reset() argument 770 __func__, hose->global_number, option); in pnv_eeh_phb_reset() 773 if (option == EEH_RESET_FUNDAMENTAL || in pnv_eeh_phb_reset() 774 option == EEH_RESET_HOT) in pnv_eeh_phb_reset() 778 else if (option == EEH_RESET_DEACTIVATE) in pnv_eeh_phb_reset() 793 if (option == EEH_RESET_DEACTIVATE) { in pnv_eeh_phb_reset() [all …]
|
/arch/mips/ |
D | Makefile | 58 ifeq ($(call cc-option-yn,-mmcount-ra-address), y) 63 cflags-y += $(call cc-option, -mno-check-zero-division) 110 ifneq ($(call as-option,-Wa$(comma)-msoft-float,),) 144 cflags-$(CONFIG_SB1XXX_CORELIS) += $(call cc-option,-mno-sched-prolog) \ 176 cflags-$(CONFIG_CPU_R5500) += $(call cc-option,-march=r5500,-march=r5000) \ 178 cflags-$(CONFIG_CPU_NEVADA) += $(call cc-option,-march=rm5200,-march=r5000) \ 180 cflags-$(CONFIG_CPU_RM7000) += $(call cc-option,-march=rm7000,-march=r5000) \ 182 cflags-$(CONFIG_CPU_SB1) += $(call cc-option,-march=sb1,-march=r5000) \ 184 cflags-$(CONFIG_CPU_SB1) += $(call cc-option,-mno-mdmx) 185 cflags-$(CONFIG_CPU_SB1) += $(call cc-option,-mno-mips3d) [all …]
|
/arch/x86/boot/ |
D | cmdline.c | 28 int __cmdline_find_option(unsigned long cmdline_ptr, const char *option, char *buffer, int bufsize) in __cmdline_find_option() argument 56 opptr = option; in __cmdline_find_option() 100 int __cmdline_find_option_bool(unsigned long cmdline_ptr, const char *option) in __cmdline_find_option_bool() argument 130 opptr = option; in __cmdline_find_option_bool()
|
/arch/s390/ |
D | Makefile | 30 KBUILD_CFLAGS_DECOMPRESSOR += $(call cc-option,-ffreestanding) 33 KBUILD_CFLAGS_DECOMPRESSOR += $(if $(CONFIG_DEBUG_INFO_DWARF4), $(call cc-option, -gdwarf-4,)) 82 ifeq ($(call cc-option-yn,-mpacked-stack -mbackchain -msoft-float),y) 90 ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y) 92 ifneq ($(call cc-option-yn,-mstack-size=8192),y) 98 ifeq ($(call cc-option-yn,-mwarn-dynamicstack),y) 105 ifeq ($(call cc-option-yn,$(CC_FLAGS_MARCH) -mindirect-branch=thunk),y) 116 ifeq ($(call cc-option-yn,-mfentry -mnop-mcount),n) 119 ifeq ($(call cc-option-yn,$(cc_hotpatch)),y)
|
/arch/hexagon/ |
D | Makefile | 19 cflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION}) 20 aflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION}) 21 ldflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION})
|
/arch/riscv/kernel/ |
D | head.S | 59 .option push 60 .option norelax 62 .option pop 149 .option push 150 .option norelax 152 .option pop
|
/arch/x86/um/os-Linux/ |
D | prctl.c | 9 int os_arch_prctl(int pid, int option, unsigned long *arg2) in os_arch_prctl() argument 11 return ptrace(PTRACE_ARCH_PRCTL, pid, (unsigned long) arg2, option); in os_arch_prctl()
|