summaryrefslogtreecommitdiffstats
path: root/sys/arm
diff options
context:
space:
mode:
authormmel <mmel@FreeBSD.org>2016-02-01 14:28:58 +0000
committermmel <mmel@FreeBSD.org>2016-02-01 14:28:58 +0000
commited12f5f7269f2674e075a66911d9a99a18149063 (patch)
treeb5edbb65c0a16c93d4e802f1ebbac5bef8eb7866 /sys/arm
parent6e83480ac9d23ef93d924fed9b905567ce9086d5 (diff)
downloadFreeBSD-src-ed12f5f7269f2674e075a66911d9a99a18149063.zip
FreeBSD-src-ed12f5f7269f2674e075a66911d9a99a18149063.tar.gz
ARM: Rename remaining instances of cpufunc_id() to cpu_ident(),
forgotten in r295096. Remove tlb_flushI/tlb_flushI_SE functions forgotten in r295122.
Diffstat (limited to 'sys/arm')
-rw-r--r--sys/arm/arm/cpufunc.c2
-rw-r--r--sys/arm/arm/elf_trampoline.c8
-rw-r--r--sys/arm/arm/pmap.c2
-rw-r--r--sys/arm/mv/armadaxp/armadaxp.c2
-rw-r--r--sys/arm/mv/armadaxp/armadaxp_mp.c2
-rw-r--r--sys/arm/ti/ti_cpuid.c2
6 files changed, 8 insertions, 10 deletions
diff --git a/sys/arm/arm/cpufunc.c b/sys/arm/arm/cpufunc.c
index dc5167e..2ffef6b 100644
--- a/sys/arm/arm/cpufunc.c
+++ b/sys/arm/arm/cpufunc.c
@@ -221,8 +221,6 @@ struct cpu_functions sheeva_cpufuncs = {
armv4_tlb_flushID, /* tlb_flushID */
arm10_tlb_flushID_SE, /* tlb_flushID_SE */
- armv4_tlb_flushI, /* tlb_flushI */
- arm10_tlb_flushI_SE, /* tlb_flushI_SE */
armv4_tlb_flushD, /* tlb_flushD */
armv4_tlb_flushD_SE, /* tlb_flushD_SE */
diff --git a/sys/arm/arm/elf_trampoline.c b/sys/arm/arm/elf_trampoline.c
index c3a7eed..6c086ea 100644
--- a/sys/arm/arm/elf_trampoline.c
+++ b/sys/arm/arm/elf_trampoline.c
@@ -49,7 +49,7 @@ void _start(void);
void __start(void);
void __startC(void);
-extern unsigned int cpufunc_id(void);
+extern unsigned int cpu_ident(void);
extern void armv6_idcache_wbinv_all(void);
extern void armv7_idcache_wbinv_all(void);
extern void do_call(void *, void *, void *, int);
@@ -248,7 +248,7 @@ _startC(void)
#ifndef KZIP
#ifdef CPU_ARM9
/* So that idcache_wbinv works; */
- if ((cpufunc_id() & 0x0000f000) == 0x00009000)
+ if ((cpu_ident() & 0x0000f000) == 0x00009000)
arm9_setup();
#endif
#endif
@@ -266,7 +266,7 @@ get_cachetype_cp15()
__asm __volatile("mrc p15, 0, %0, c0, c0, 1"
: "=r" (ctype));
- cpuid = cpufunc_id();
+ cpuid = cpu_ident();
/*
* ...and thus spake the ARM ARM:
*
@@ -683,7 +683,7 @@ __start(void)
#ifdef CPU_ARM9
/* So that idcache_wbinv works; */
- if ((cpufunc_id() & 0x0000f000) == 0x00009000)
+ if ((cpu_ident() & 0x0000f000) == 0x00009000)
arm9_setup();
#endif
setup_pagetables(pt_addr, (vm_paddr_t)curaddr,
diff --git a/sys/arm/arm/pmap.c b/sys/arm/arm/pmap.c
index 688fe7b..99a39a0 100644
--- a/sys/arm/arm/pmap.c
+++ b/sys/arm/arm/pmap.c
@@ -561,7 +561,7 @@ pmap_pte_init_xscale(void)
{
uint32_t id, type;
- id = cpufunc_id();
+ id = cpu_ident();
type = id & ~(CPU_ID_XSCALE_COREREV_MASK|CPU_ID_REVISION_MASK);
if (type == CPU_ID_PXA250 || type == CPU_ID_PXA210) {
diff --git a/sys/arm/mv/armadaxp/armadaxp.c b/sys/arm/mv/armadaxp/armadaxp.c
index 693ae6a..3cb03fa 100644
--- a/sys/arm/mv/armadaxp/armadaxp.c
+++ b/sys/arm/mv/armadaxp/armadaxp.c
@@ -128,7 +128,7 @@ get_tclk(void)
{
uint32_t cputype;
- cputype = cpufunc_id();
+ cputype = cpu_ident();
cputype &= CPU_ID_CPU_MASK;
if (cputype == CPU_ID_MV88SV584X_V7)
diff --git a/sys/arm/mv/armadaxp/armadaxp_mp.c b/sys/arm/mv/armadaxp/armadaxp_mp.c
index 6685204..4ccf7e3 100644
--- a/sys/arm/mv/armadaxp/armadaxp_mp.c
+++ b/sys/arm/mv/armadaxp/armadaxp_mp.c
@@ -111,7 +111,7 @@ platform_mp_start_ap(void)
* Initialization procedure depends on core revision,
* in this step CHIP ID is checked to choose proper procedure
*/
- cputype = cpufunc_id();
+ cputype = cpu_ident();
cputype &= CPU_ID_CPU_MASK;
/*
diff --git a/sys/arm/ti/ti_cpuid.c b/sys/arm/ti/ti_cpuid.c
index 38af285..b2f0f65 100644
--- a/sys/arm/ti/ti_cpuid.c
+++ b/sys/arm/ti/ti_cpuid.c
@@ -120,7 +120,7 @@ omap4_get_revision(void)
* the ARM cpuid to get the correct revision.
*/
if (revision == 0) {
- id_code = cpufunc_id();
+ id_code = cpu_ident();
revision = (id_code & 0xf) - 1;
}
OpenPOWER on IntegriCloud