Home
last modified time | relevance | path

Searched refs:mach (Results 1 – 25 of 78) sorted by relevance

1234

/arch/mips/kernel/
Dmips_machine.c14 #define for_each_machine(mach) \ argument
15 for ((mach) = (struct mips_machine *)&__mips_machines_start; \
16 (mach) && \
17 (unsigned long)(mach) < (unsigned long)&__mips_machines_end; \
18 (mach)++)
22 struct mips_machine *mach; in mips_machtype_setup() local
24 for_each_machine(mach) { in mips_machtype_setup()
25 if (mach->mach_id == NULL) in mips_machtype_setup()
28 if (strcmp(mach->mach_id, id) == 0) { in mips_machtype_setup()
29 mips_machtype = mach->mach_type; in mips_machtype_setup()
[all …]
/arch/powerpc/include/asm/
Dmachdep.h278 #define __define_machine_initcall(mach, fn, id) \ argument
279 static int __init __machine_initcall_##mach##_##fn(void) { \
280 if (machine_is(mach)) return fn(); \
283 __define_initcall(__machine_initcall_##mach##_##fn, id);
285 #define machine_early_initcall(mach, fn) __define_machine_initcall(mach, fn, early) argument
286 #define machine_core_initcall(mach, fn) __define_machine_initcall(mach, fn, 1) argument
287 #define machine_core_initcall_sync(mach, fn) __define_machine_initcall(mach, fn, 1s) argument
288 #define machine_postcore_initcall(mach, fn) __define_machine_initcall(mach, fn, 2) argument
289 #define machine_postcore_initcall_sync(mach, fn) __define_machine_initcall(mach, fn, 2s) argument
290 #define machine_arch_initcall(mach, fn) __define_machine_initcall(mach, fn, 3) argument
[all …]
/arch/arm/mach-imx/
DMakefile6 obj-$(CONFIG_SOC_IMX25) += cpu-imx25.o mach-imx25.o pm-imx25.o
41 obj-$(CONFIG_MACH_MX21ADS) += mach-mx21ads.o
44 obj-$(CONFIG_MACH_MX27ADS) += mach-mx27ads.o
45 obj-$(CONFIG_MACH_MX27_3DS) += mach-mx27_3ds.o
46 obj-$(CONFIG_MACH_IMX27_VISSTRIM_M10) += mach-imx27_visstrim_m10.o
47 obj-$(CONFIG_MACH_PCA100) += mach-pca100.o
51 obj-$(CONFIG_MACH_MX31ADS) += mach-mx31ads.o
52 obj-$(CONFIG_MACH_MX31LILLY) += mach-mx31lilly.o mx31lilly-db.o
53 obj-$(CONFIG_MACH_MX31LITE) += mach-mx31lite.o mx31lite-db.o
54 obj-$(CONFIG_MACH_PCM037) += mach-pcm037.o
[all …]
/arch/arm/mach-s3c24xx/
DMakefile48 obj-$(CONFIG_MACH_AML_M5900) += mach-amlm5900.o
49 obj-$(CONFIG_ARCH_BAST) += mach-bast.o
51 obj-$(CONFIG_ARCH_H1940) += mach-h1940.o
54 obj-$(CONFIG_MACH_N30) += mach-n30.o
55 obj-$(CONFIG_MACH_OTOM) += mach-otom.o
56 obj-$(CONFIG_MACH_QT2410) += mach-qt2410.o
57 obj-$(CONFIG_ARCH_SMDK2410) += mach-smdk2410.o
58 obj-$(CONFIG_MACH_TCT_HAMMER) += mach-tct_hammer.o
59 obj-$(CONFIG_MACH_VR1000) += mach-vr1000.o
61 obj-$(CONFIG_MACH_JIVE) += mach-jive.o
[all …]
/arch/arm/mach-s3c64xx/
DMakefile49 obj-$(CONFIG_MACH_ANW6410) += mach-anw6410.o
50 obj-$(CONFIG_MACH_HMT) += mach-hmt.o
51 obj-$(CONFIG_MACH_MINI6410) += mach-mini6410.o
52 obj-$(CONFIG_MACH_NCP) += mach-ncp.o
53 obj-$(CONFIG_MACH_REAL6410) += mach-real6410.o
54 obj-$(CONFIG_MACH_SMARTQ) += mach-smartq.o
55 obj-$(CONFIG_MACH_SMARTQ5) += mach-smartq5.o
56 obj-$(CONFIG_MACH_SMARTQ7) += mach-smartq7.o
57 obj-$(CONFIG_MACH_SMDK6400) += mach-smdk6400.o
58 obj-$(CONFIG_MACH_SMDK6410) += mach-smdk6410.o
[all …]
/arch/mips/generic/
Dinit.c24 static __initdata const struct mips_machine *mach; variable
54 mach = check_mach; in plat_get_fdt()
72 mach = check_mach; in plat_get_fdt()
79 BUG_ON(!mach); in plat_get_fdt()
82 fdt = mach->fdt; in plat_get_fdt()
106 if (mach && mach->fixup_fdt) in plat_mem_setup()
107 fdt = mach->fixup_fdt(fdt, mach_match_data); in plat_mem_setup()
161 } else if (mach && mach->measure_hpt_freq) { in plat_time_init()
162 mips_hpt_frequency = mach->measure_hpt_freq(); in plat_time_init()
/arch/mips/include/asm/
Dmachine.h28 #define for_each_mips_machine(mach) \ argument
29 for ((mach) = (struct mips_machine *)&__mips_machines_start; \
30 (mach) < (struct mips_machine *)&__mips_machines_end; \
31 (mach)++)
44 mips_machine_is_compatible(const struct mips_machine *mach, const void *fdt) in mips_machine_is_compatible() argument
48 if (!mach->matches) in mips_machine_is_compatible()
51 for (match = mach->matches; match->compatible[0]; match++) { in mips_machine_is_compatible()
/arch/sh/
DMakefile142 machdir-$(CONFIG_SOLUTION_ENGINE) += mach-se
143 machdir-$(CONFIG_SH_HP6XX) += mach-hp6xx
144 machdir-$(CONFIG_SH_DREAMCAST) += mach-dreamcast
145 machdir-$(CONFIG_SH_SH03) += mach-sh03
146 machdir-$(CONFIG_SH_RTS7751R2D) += mach-r2d
147 machdir-$(CONFIG_SH_HIGHLANDER) += mach-highlander
148 machdir-$(CONFIG_SH_MIGOR) += mach-migor
149 machdir-$(CONFIG_SH_AP325RXA) += mach-ap325rxa
150 machdir-$(CONFIG_SH_KFR2R09) += mach-kfr2r09
151 machdir-$(CONFIG_SH_ECOVEC) += mach-ecovec24
[all …]
/arch/sh/tools/
Dgen-mach-types12 mach[nr] = $1;
35 printf(" #define MACH_%s\t\t1\n", mach[i]);
37 printf(" #define MACH_%s\t\t0\n", mach[i]);
45 tolower(mach[i]), mach[i]);
DMakefile13 include/generated/machtypes.h: $(src)/gen-mach-types $(src)/mach-types
/arch/arm/mach-omap1/include/mach/
Duncompress.h69 #define _DEBUG_LL_ENTRY(mach, dbg_uart, dbg_shft, dbg_id) \ argument
70 if (machine_is_##mach()) { \
78 #define DEBUG_LL_OMAP7XX(p, mach) \ argument
79 _DEBUG_LL_ENTRY(mach, OMAP1_UART##p##_BASE, OMAP7XX_PORT_SHIFT, \
82 #define DEBUG_LL_OMAP1(p, mach) \ argument
83 _DEBUG_LL_ENTRY(mach, OMAP1_UART##p##_BASE, OMAP_PORT_SHIFT, \
/arch/mips/ralink/
DPlatform5 cflags-$(CONFIG_RALINK) += -I$(srctree)/arch/mips/include/asm/mach-ralink
11 cflags-$(CONFIG_SOC_RT288X) += -I$(srctree)/arch/mips/include/asm/mach-ralink/rt288x
17 cflags-$(CONFIG_SOC_RT305X) += -I$(srctree)/arch/mips/include/asm/mach-ralink/rt305x
23 cflags-$(CONFIG_SOC_RT3883) += -I$(srctree)/arch/mips/include/asm/mach-ralink/rt3883
29 cflags-$(CONFIG_SOC_MT7620) += -I$(srctree)/arch/mips/include/asm/mach-ralink/mt7620
34 cflags-$(CONFIG_SOC_MT7621) += -I$(srctree)/arch/mips/include/asm/mach-ralink/mt7621
/arch/s390/kernel/
Dearly.c108 struct sysinfo_1_1_1 *mach = (struct sysinfo_1_1_1 *)&sysinfo_page; in setup_arch_string() local
112 if (stsi(mach, 1, 1, 1)) in setup_arch_string()
114 EBCASC(mach->manufacturer, sizeof(mach->manufacturer)); in setup_arch_string()
115 EBCASC(mach->type, sizeof(mach->type)); in setup_arch_string()
116 EBCASC(mach->model, sizeof(mach->model)); in setup_arch_string()
117 EBCASC(mach->model_capacity, sizeof(mach->model_capacity)); in setup_arch_string()
119 mach->manufacturer, mach->type, in setup_arch_string()
120 mach->model, mach->model_capacity); in setup_arch_string()
/arch/mips/fw/arc/
Didentify.c93 struct smatch *mach; in prom_identify_arch() local
112 mach = string_to_mach(iname); in prom_identify_arch()
113 system_type = mach->liname; in prom_identify_arch()
115 prom_flags = mach->flags; in prom_identify_arch()
/arch/mips/lantiq/
DPlatform6 cflags-$(CONFIG_LANTIQ) += -I$(srctree)/arch/mips/include/asm/mach-lantiq
8 cflags-$(CONFIG_SOC_TYPE_XWAY) += -I$(srctree)/arch/mips/include/asm/mach-lantiq/xway
9 cflags-$(CONFIG_SOC_FALCON) += -I$(srctree)/arch/mips/include/asm/mach-lantiq/falcon
/arch/mips/sibyte/
DPlatform13 -I$(srctree)/arch/mips/include/asm/mach-sibyte \
17 -I$(srctree)/arch/mips/include/asm/mach-sibyte \
21 -I$(srctree)/arch/mips/include/asm/mach-sibyte \
25 -I$(srctree)/arch/mips/include/asm/mach-sibyte \
/arch/mips/txx9/
DPlatform5 -I$(srctree)/arch/mips/include/asm/mach-tx39xx
7 -I$(srctree)/arch/mips/include/asm/mach-tx49xx
/arch/h8300/
DMakefile14 aflags-$(CONFIG_CPU_H8300H) := -mh -Wa,--mach=h8300h
17 aflags-$(CONFIG_CPU_H8S) := -ms -Wa,--mach=h8300s
/arch/arm/tools/
DMakefile19 kapi-hdrs-y += $(kapi)/mach-types.h
40 $(kapi)/mach-types.h: $(src)/gen-mach-types $(src)/mach-types FORCE
/arch/mips/alchemy/
DPlatform12 cflags-$(CONFIG_MIPS_DB1XXX) += -I$(srctree)/arch/mips/include/asm/mach-db1x00
38 cflags-$(CONFIG_MIPS_ALCHEMY) += -I$(srctree)/arch/mips/include/asm/mach-au1x00
/arch/arm/
DKconfig255 Select this when mach/io.h is required to provide special
256 definitions for this platform. The need for mach/io.h should
262 Select this when mach/memory.h is required to provide special
263 definitions for this platform. The need for mach/memory.h should
606 # This is sorted alphabetically by mach-* pathname. However, plat-*
608 # plat- suffix) or along side the corresponding mach-* source.
610 source "arch/arm/mach-actions/Kconfig"
612 source "arch/arm/mach-alpine/Kconfig"
614 source "arch/arm/mach-artpec/Kconfig"
616 source "arch/arm/mach-asm9260/Kconfig"
[all …]
/arch/arm/mach-mxs/
DMakefile3 obj-$(CONFIG_ARCH_MXS) += mach-mxs.o
/arch/mips/emma/
DPlatform3 -I$(srctree)/arch/mips/include/asm/mach-emma2rh
/arch/arm/include/debug/
Dsa1100.S24 @ the comment in arch/arm/mach-sa1100/include/mach/uncompress.h.
/arch/mips/rb532/
DPlatform6 -I$(srctree)/arch/mips/include/asm/mach-rc32434

1234