Home
last modified time | relevance | path

Searched refs:cpu_family (Results 1 – 15 of 15) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/meson/meson/
H A D0001-Make-CPU-family-warnings-fatal.patch21 cpu_family = literal['cpu_family']
22 - if cpu_family not in known_cpu_families:
23 - mlog.warning(f'Unknown CPU family {cpu_family}, please report this at https://github.c…
24 + if cpu_family not in known_cpu_families and cpu_family != "riscv":
25 …ly {}, see https://wiki.yoctoproject.org/wiki/Meson/UnknownCPU for directions.'.format(cpu_family))
/OK3568_Linux_fs/external/xserver/hw/xfree86/os-support/
H A Dmeson.build71 if host_machine.cpu_family() == 'sparc'
73 elif host_machine.cpu_family() == 'x86_64'
75 elif host_machine.cpu_family() == 'x86'
90 if host_machine.cpu_family() == 'x86_64'
92 elif host_machine.cpu_family() == 'x86'
94 elif host_machine.cpu_family() == 'arm'
96 elif host_machine.cpu_family() == 'powerpc'
98 elif host_machine.cpu_family() == 'sparc64'
101 elif host_machine.cpu_family() == 'alpha'
/OK3568_Linux_fs/u-boot/arch/arm/mach-omap2/omap3/
H A Dsys_info.c96 u32 cpu_family; in get_cpu_family() local
105 cpu_family = CPU_OMAP34XX; in get_cpu_family()
108 cpu_family = CPU_AM35XX; in get_cpu_family()
111 cpu_family = CPU_OMAP36XX; in get_cpu_family()
114 cpu_family = CPU_OMAP34XX; in get_cpu_family()
117 return cpu_family; in get_cpu_family()
/OK3568_Linux_fs/kernel/tools/power/cpupower/utils/helpers/
H A Damd.c88 int decode_pstates(unsigned int cpu, unsigned int cpu_family, in decode_pstates() argument
99 if (cpu_family < 0x10 || cpu_family == 0x14) in decode_pstates()
122 if ((cpu_family == 0x17) && (!pstate.fam17h_bits.en)) in decode_pstates()
127 pstates[i] = get_cof(cpu_family, pstate); in decode_pstates()
H A Dhelpers.h126 extern int decode_pstates(unsigned int cpu, unsigned int cpu_family,
144 static inline int decode_pstates(unsigned int cpu, unsigned int cpu_family, in decode_pstates() argument
/OK3568_Linux_fs/buildroot/package/mesa3d/
H A D0003-vc4-add-meson-option-to-disable-optional-neon-suppor.patch46 -if host_machine.cpu_family() == 'arm'
47 +if host_machine.cpu_family() == 'arm' and get_option('gallium-vc4-neon') != 'disabled'
51 @@ -93,7 +93,7 @@ if host_machine.cpu_family() == 'arm'
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-bsp/flashrom/flashrom/
H A Dmeson-fixes.patch32 +if not (target_machine.cpu_family() == 'x86' or target_machine.cpu_family() == 'x86_64')
/OK3568_Linux_fs/external/xserver/include/
H A Dmeson.build335 if host_machine.cpu_family() == 'x86' or host_machine.cpu_family() == 'x86_64'
342 if host_machine.cpu_family() == 'x86' or host_machine.cpu_family() == 'x86_64'
347 if host_machine.cpu_family() == 'x86'
350 if host_machine.cpu_family() == 'x86_64'
/OK3568_Linux_fs/external/linux-rga/cross/
H A Dcross_file_arm32.txt10 cpu_family = 'arm'
H A Dcross_file_aarch64.txt10 cpu_family = 'aarch64'
/OK3568_Linux_fs/buildroot/support/misc/
H A Dcross-compilation.conf.in38 cpu_family = '@TARGET_ARCH@'
/OK3568_Linux_fs/kernel/arch/sh/include/asm/
H A Dprocessor.h46 enum cpu_family { enum
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dmeson.bbclass87 cpu_family = '${@meson_cpu_family('HOST_ARCH', d)}'
93 cpu_family = '${@meson_cpu_family('TARGET_ARCH', d)}'
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/meson/
H A Dmeson_0.61.3.bb121 cpu_family = '${@meson_cpu_family("SDK_ARCH", d)}'
/OK3568_Linux_fs/external/libmali/
H A Dmeson.build17 arch = host_machine.cpu_family()