HomeSort by: relevance | last modified time | path
    Searched defs:cfaa (Results 1 - 19 of 19) sorted by relevancy

  /src/sys/arch/x86/x86/
vmt.c 47 struct cpufeature_attach_args *cfaa = aux; local in function:vmt_match
48 struct cpu_info *ci = cfaa->ci;
50 if (strcmp(cfaa->name, "vm") != 0)
viac7temp.c 69 struct cpufeature_attach_args *cfaa = aux; local in function:viac7temp_match
70 struct cpu_info *ci = cfaa->ci;
74 if (strcmp(cfaa->name, "temperature") != 0)
92 struct cpufeature_attach_args *cfaa = aux; local in function:viac7temp_attach
93 struct cpu_info *ci = cfaa->ci;
via_padlock.c 505 struct cpufeature_attach_args *cfaa = opaque; local in function:via_padlock_match
506 struct cpu_info *ci = cfaa->ci;
508 if (strcmp(cfaa->name, "padlock") != 0)
odcm.c 102 struct cpufeature_attach_args *cfaa = aux; local in function:odcm_match
105 if (strcmp(cfaa->name, "frequency") != 0)
coretemp.c 131 struct cpufeature_attach_args *cfaa = aux; local in function:coretemp_match
132 struct cpu_info *ci = cfaa->ci;
135 if (strcmp(cfaa->name, "temperature") != 0)
164 struct cpufeature_attach_args *cfaa = aux; local in function:coretemp_attach
165 struct cpu_info *ci = cfaa->ci;
powernow.c 146 struct cpufeature_attach_args *cfaa = aux; local in function:powernow_match
147 struct cpu_info *ci = cfaa->ci;
150 if (strcmp(cfaa->name, "frequency") != 0)
179 struct cpufeature_attach_args *cfaa = aux; local in function:powernow_attach
180 struct cpu_info *ci = cfaa->ci;
cpu.c 571 struct cpufeature_attach_args cfaa; local in function:cpu_rescan
584 memset(&cfaa, 0, sizeof(cfaa));
585 cfaa.ci = ci;
589 cfaa.name = "frequency";
591 config_found(self, &cfaa, NULL,
596 cfaa.name = "padlock";
598 config_found(self, &cfaa, NULL,
603 cfaa.name = "temperature";
605 config_found(self, &cfaa, NULL
    [all...]
est.c 1015 struct cpufeature_attach_args *cfaa = aux; local in function:est_match
1016 struct cpu_info *ci = cfaa->ci;
1018 if (strcmp(cfaa->name, "frequency") != 0)
1035 struct cpufeature_attach_args *cfaa = aux; local in function:est_attach
1036 struct cpu_info *ci = cfaa->ci;
hyperv.c 581 struct cpufeature_attach_args *cfaa = aux; local in function:hyperv_match
582 struct cpu_info *ci = cfaa->ci;
584 if (strcmp(cfaa->name, "vm") != 0)
  /src/sys/arch/arm/rockchip/
rk3288_usb.c 79 struct fdt_attach_args cfaa = *faa; local in function:rk3288_usb_attach
80 cfaa.faa_phandle = child;
81 cfaa.faa_name = fdtbus_get_string(child, "name");
82 cfaa.faa_quiet = false;
84 config_found(self, &cfaa, NULL, CFARGS_NONE);
rk3288_iomux.c 360 struct fdt_attach_args cfaa = *faa; local in function:rk3288_iomux_attach
361 cfaa.faa_phandle = child;
362 cfaa.faa_name = fdtbus_get_string(child, "name");
363 cfaa.faa_quiet = false;
365 config_found(self, &cfaa, NULL, CFARGS_NONE);
rk3328_iomux.c 312 struct fdt_attach_args cfaa = *faa; local in function:rk3328_iomux_attach
313 cfaa.faa_phandle = child;
314 cfaa.faa_name = fdtbus_get_string(child, "name");
315 cfaa.faa_quiet = false;
317 config_found(self, &cfaa, NULL, CFARGS_NONE);
rk_usb.c 257 struct fdt_attach_args cfaa = *faa; local in function:rk_usb_attach
258 cfaa.faa_phandle = child;
259 cfaa.faa_name = fdtbus_get_string(child, "name");
260 cfaa.faa_quiet = false;
262 config_found(self, &cfaa, NULL, CFARGS_NONE);
rk3588_iomux.c 1033 struct fdt_attach_args cfaa = *faa; local in function:rk3588_iomux_attach
1034 cfaa.faa_phandle = child;
1035 cfaa.faa_name = fdtbus_get_string(child, "name");
1036 cfaa.faa_quiet = false;
1038 config_found(self, &cfaa, NULL, CFARGS_NONE);
rk3399_iomux.c 516 struct fdt_attach_args cfaa = *faa; local in function:rk3399_iomux_attach
517 cfaa.faa_phandle = child;
518 cfaa.faa_name = fdtbus_get_string(child, "name");
519 cfaa.faa_quiet = false;
521 config_found(self, &cfaa, NULL, CFARGS_NONE);
rk_tcphy.c 227 struct fdt_attach_args cfaa = *faa; local in function:rk_typec_attach
228 cfaa.faa_phandle = child;
229 cfaa.faa_name = fdtbus_get_string(child, "name");
230 cfaa.faa_quiet = false;
232 config_found(self, &cfaa, NULL, CFARGS_NONE);
  /src/sys/arch/aarch64/aarch64/
cpu.c 196 struct cpufeature_attach_args cfaa = { local in function:cpu_rescan
199 config_found(dv, &cfaa, NULL, CFARGS(.iattr = "cpufeaturebus"));
  /src/sys/arch/xen/x86/
cpu.c 254 struct cpufeature_attach_args cfaa; local in function:cpu_rescan
257 memset(&cfaa, 0, sizeof(cfaa));
258 cfaa.ci = ci;
263 cfaa.name = "frequency";
265 config_found(self, &cfaa, NULL,
  /src/sys/arch/x86/acpi/
acpi_cpu_md.c 128 struct cpufeature_attach_args *cfaa = aux; local in function:acpicpu_md_match
130 if (strcmp(cfaa->name, "frequency") != 0)
133 return cfaa->ci;
139 struct cpufeature_attach_args *cfaa = aux; local in function:acpicpu_md_attach
141 return cfaa->ci;

Completed in 23 milliseconds