proc-feroceon.S 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594
  1. /*
  2. * linux/arch/arm/mm/proc-feroceon.S: MMU functions for Feroceon
  3. *
  4. * Heavily based on proc-arm926.S
  5. * Maintainer: Assaf Hoffman <hoffman@marvell.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <linux/linkage.h>
  22. #include <linux/init.h>
  23. #include <asm/assembler.h>
  24. #include <asm/hwcap.h>
  25. #include <asm/pgtable-hwdef.h>
  26. #include <asm/pgtable.h>
  27. #include <asm/page.h>
  28. #include <asm/ptrace.h>
  29. #include "proc-macros.S"
  30. /*
  31. * This is the maximum size of an area which will be invalidated
  32. * using the single invalidate entry instructions. Anything larger
  33. * than this, and we go for the whole cache.
  34. *
  35. * This value should be chosen such that we choose the cheapest
  36. * alternative.
  37. */
  38. #define CACHE_DLIMIT 16384
  39. /*
  40. * the cache line size of the I and D cache
  41. */
  42. #define CACHE_DLINESIZE 32
  43. .bss
  44. .align 3
  45. __cache_params_loc:
  46. .space 8
  47. .text
  48. __cache_params:
  49. .word __cache_params_loc
  50. /*
  51. * cpu_feroceon_proc_init()
  52. */
  53. ENTRY(cpu_feroceon_proc_init)
  54. mrc p15, 0, r0, c0, c0, 1 @ read cache type register
  55. ldr r1, __cache_params
  56. mov r2, #(16 << 5)
  57. tst r0, #(1 << 16) @ get way
  58. mov r0, r0, lsr #18 @ get cache size order
  59. movne r3, #((4 - 1) << 30) @ 4-way
  60. and r0, r0, #0xf
  61. moveq r3, #0 @ 1-way
  62. mov r2, r2, lsl r0 @ actual cache size
  63. movne r2, r2, lsr #2 @ turned into # of sets
  64. sub r2, r2, #(1 << 5)
  65. stmia r1, {r2, r3}
  66. mov pc, lr
  67. /*
  68. * cpu_feroceon_proc_fin()
  69. */
  70. ENTRY(cpu_feroceon_proc_fin)
  71. #if defined(CONFIG_CACHE_FEROCEON_L2) && \
  72. !defined(CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH)
  73. mov r0, #0
  74. mcr p15, 1, r0, c15, c9, 0 @ clean L2
  75. mcr p15, 0, r0, c7, c10, 4 @ drain WB
  76. #endif
  77. mrc p15, 0, r0, c1, c0, 0 @ ctrl register
  78. bic r0, r0, #0x1000 @ ...i............
  79. bic r0, r0, #0x000e @ ............wca.
  80. mcr p15, 0, r0, c1, c0, 0 @ disable caches
  81. mov pc, lr
  82. /*
  83. * cpu_feroceon_reset(loc)
  84. *
  85. * Perform a soft reset of the system. Put the CPU into the
  86. * same state as it would be if it had been reset, and branch
  87. * to what would be the reset vector.
  88. *
  89. * loc: location to jump to for soft reset
  90. */
  91. .align 5
  92. ENTRY(cpu_feroceon_reset)
  93. mov ip, #0
  94. mcr p15, 0, ip, c7, c7, 0 @ invalidate I,D caches
  95. mcr p15, 0, ip, c7, c10, 4 @ drain WB
  96. #ifdef CONFIG_MMU
  97. mcr p15, 0, ip, c8, c7, 0 @ invalidate I & D TLBs
  98. #endif
  99. mrc p15, 0, ip, c1, c0, 0 @ ctrl register
  100. bic ip, ip, #0x000f @ ............wcam
  101. bic ip, ip, #0x1100 @ ...i...s........
  102. mcr p15, 0, ip, c1, c0, 0 @ ctrl register
  103. mov pc, r0
  104. /*
  105. * cpu_feroceon_do_idle()
  106. *
  107. * Called with IRQs disabled
  108. */
  109. .align 5
  110. ENTRY(cpu_feroceon_do_idle)
  111. mov r0, #0
  112. mcr p15, 0, r0, c7, c10, 4 @ Drain write buffer
  113. mcr p15, 0, r0, c7, c0, 4 @ Wait for interrupt
  114. mov pc, lr
  115. /*
  116. * flush_icache_all()
  117. *
  118. * Unconditionally clean and invalidate the entire icache.
  119. */
  120. ENTRY(feroceon_flush_icache_all)
  121. mov r0, #0
  122. mcr p15, 0, r0, c7, c5, 0 @ invalidate I cache
  123. mov pc, lr
  124. ENDPROC(feroceon_flush_icache_all)
  125. /*
  126. * flush_user_cache_all()
  127. *
  128. * Clean and invalidate all cache entries in a particular
  129. * address space.
  130. */
  131. .align 5
  132. ENTRY(feroceon_flush_user_cache_all)
  133. /* FALLTHROUGH */
  134. /*
  135. * flush_kern_cache_all()
  136. *
  137. * Clean and invalidate the entire cache.
  138. */
  139. ENTRY(feroceon_flush_kern_cache_all)
  140. mov r2, #VM_EXEC
  141. __flush_whole_cache:
  142. ldr r1, __cache_params
  143. ldmia r1, {r1, r3}
  144. 1: orr ip, r1, r3
  145. 2: mcr p15, 0, ip, c7, c14, 2 @ clean + invalidate D set/way
  146. subs ip, ip, #(1 << 30) @ next way
  147. bcs 2b
  148. subs r1, r1, #(1 << 5) @ next set
  149. bcs 1b
  150. tst r2, #VM_EXEC
  151. mov ip, #0
  152. mcrne p15, 0, ip, c7, c5, 0 @ invalidate I cache
  153. mcrne p15, 0, ip, c7, c10, 4 @ drain WB
  154. mov pc, lr
  155. /*
  156. * flush_user_cache_range(start, end, flags)
  157. *
  158. * Clean and invalidate a range of cache entries in the
  159. * specified address range.
  160. *
  161. * - start - start address (inclusive)
  162. * - end - end address (exclusive)
  163. * - flags - vm_flags describing address space
  164. */
  165. .align 5
  166. ENTRY(feroceon_flush_user_cache_range)
  167. sub r3, r1, r0 @ calculate total size
  168. cmp r3, #CACHE_DLIMIT
  169. bgt __flush_whole_cache
  170. 1: tst r2, #VM_EXEC
  171. mcr p15, 0, r0, c7, c14, 1 @ clean and invalidate D entry
  172. mcrne p15, 0, r0, c7, c5, 1 @ invalidate I entry
  173. add r0, r0, #CACHE_DLINESIZE
  174. mcr p15, 0, r0, c7, c14, 1 @ clean and invalidate D entry
  175. mcrne p15, 0, r0, c7, c5, 1 @ invalidate I entry
  176. add r0, r0, #CACHE_DLINESIZE
  177. cmp r0, r1
  178. blo 1b
  179. tst r2, #VM_EXEC
  180. mov ip, #0
  181. mcrne p15, 0, ip, c7, c10, 4 @ drain WB
  182. mov pc, lr
  183. /*
  184. * coherent_kern_range(start, end)
  185. *
  186. * Ensure coherency between the Icache and the Dcache in the
  187. * region described by start, end. If you have non-snooping
  188. * Harvard caches, you need to implement this function.
  189. *
  190. * - start - virtual start address
  191. * - end - virtual end address
  192. */
  193. .align 5
  194. ENTRY(feroceon_coherent_kern_range)
  195. /* FALLTHROUGH */
  196. /*
  197. * coherent_user_range(start, end)
  198. *
  199. * Ensure coherency between the Icache and the Dcache in the
  200. * region described by start, end. If you have non-snooping
  201. * Harvard caches, you need to implement this function.
  202. *
  203. * - start - virtual start address
  204. * - end - virtual end address
  205. */
  206. ENTRY(feroceon_coherent_user_range)
  207. bic r0, r0, #CACHE_DLINESIZE - 1
  208. 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
  209. mcr p15, 0, r0, c7, c5, 1 @ invalidate I entry
  210. add r0, r0, #CACHE_DLINESIZE
  211. cmp r0, r1
  212. blo 1b
  213. mcr p15, 0, r0, c7, c10, 4 @ drain WB
  214. mov pc, lr
  215. /*
  216. * flush_kern_dcache_area(void *addr, size_t size)
  217. *
  218. * Ensure no D cache aliasing occurs, either with itself or
  219. * the I cache
  220. *
  221. * - addr - kernel address
  222. * - size - region size
  223. */
  224. .align 5
  225. ENTRY(feroceon_flush_kern_dcache_area)
  226. add r1, r0, r1
  227. 1: mcr p15, 0, r0, c7, c14, 1 @ clean+invalidate D entry
  228. add r0, r0, #CACHE_DLINESIZE
  229. cmp r0, r1
  230. blo 1b
  231. mov r0, #0
  232. mcr p15, 0, r0, c7, c5, 0 @ invalidate I cache
  233. mcr p15, 0, r0, c7, c10, 4 @ drain WB
  234. mov pc, lr
  235. .align 5
  236. ENTRY(feroceon_range_flush_kern_dcache_area)
  237. mrs r2, cpsr
  238. add r1, r0, #PAGE_SZ - CACHE_DLINESIZE @ top addr is inclusive
  239. orr r3, r2, #PSR_I_BIT
  240. msr cpsr_c, r3 @ disable interrupts
  241. mcr p15, 5, r0, c15, c15, 0 @ D clean/inv range start
  242. mcr p15, 5, r1, c15, c15, 1 @ D clean/inv range top
  243. msr cpsr_c, r2 @ restore interrupts
  244. mov r0, #0
  245. mcr p15, 0, r0, c7, c5, 0 @ invalidate I cache
  246. mcr p15, 0, r0, c7, c10, 4 @ drain WB
  247. mov pc, lr
  248. /*
  249. * dma_inv_range(start, end)
  250. *
  251. * Invalidate (discard) the specified virtual address range.
  252. * May not write back any entries. If 'start' or 'end'
  253. * are not cache line aligned, those lines must be written
  254. * back.
  255. *
  256. * - start - virtual start address
  257. * - end - virtual end address
  258. *
  259. * (same as v4wb)
  260. */
  261. .align 5
  262. feroceon_dma_inv_range:
  263. tst r0, #CACHE_DLINESIZE - 1
  264. bic r0, r0, #CACHE_DLINESIZE - 1
  265. mcrne p15, 0, r0, c7, c10, 1 @ clean D entry
  266. tst r1, #CACHE_DLINESIZE - 1
  267. mcrne p15, 0, r1, c7, c10, 1 @ clean D entry
  268. 1: mcr p15, 0, r0, c7, c6, 1 @ invalidate D entry
  269. add r0, r0, #CACHE_DLINESIZE
  270. cmp r0, r1
  271. blo 1b
  272. mcr p15, 0, r0, c7, c10, 4 @ drain WB
  273. mov pc, lr
  274. .align 5
  275. feroceon_range_dma_inv_range:
  276. mrs r2, cpsr
  277. tst r0, #CACHE_DLINESIZE - 1
  278. mcrne p15, 0, r0, c7, c10, 1 @ clean D entry
  279. tst r1, #CACHE_DLINESIZE - 1
  280. mcrne p15, 0, r1, c7, c10, 1 @ clean D entry
  281. cmp r1, r0
  282. subne r1, r1, #1 @ top address is inclusive
  283. orr r3, r2, #PSR_I_BIT
  284. msr cpsr_c, r3 @ disable interrupts
  285. mcr p15, 5, r0, c15, c14, 0 @ D inv range start
  286. mcr p15, 5, r1, c15, c14, 1 @ D inv range top
  287. msr cpsr_c, r2 @ restore interrupts
  288. mov pc, lr
  289. /*
  290. * dma_clean_range(start, end)
  291. *
  292. * Clean the specified virtual address range.
  293. *
  294. * - start - virtual start address
  295. * - end - virtual end address
  296. *
  297. * (same as v4wb)
  298. */
  299. .align 5
  300. feroceon_dma_clean_range:
  301. bic r0, r0, #CACHE_DLINESIZE - 1
  302. 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
  303. add r0, r0, #CACHE_DLINESIZE
  304. cmp r0, r1
  305. blo 1b
  306. mcr p15, 0, r0, c7, c10, 4 @ drain WB
  307. mov pc, lr
  308. .align 5
  309. feroceon_range_dma_clean_range:
  310. mrs r2, cpsr
  311. cmp r1, r0
  312. subne r1, r1, #1 @ top address is inclusive
  313. orr r3, r2, #PSR_I_BIT
  314. msr cpsr_c, r3 @ disable interrupts
  315. mcr p15, 5, r0, c15, c13, 0 @ D clean range start
  316. mcr p15, 5, r1, c15, c13, 1 @ D clean range top
  317. msr cpsr_c, r2 @ restore interrupts
  318. mcr p15, 0, r0, c7, c10, 4 @ drain WB
  319. mov pc, lr
  320. /*
  321. * dma_flush_range(start, end)
  322. *
  323. * Clean and invalidate the specified virtual address range.
  324. *
  325. * - start - virtual start address
  326. * - end - virtual end address
  327. */
  328. .align 5
  329. ENTRY(feroceon_dma_flush_range)
  330. bic r0, r0, #CACHE_DLINESIZE - 1
  331. 1: mcr p15, 0, r0, c7, c14, 1 @ clean+invalidate D entry
  332. add r0, r0, #CACHE_DLINESIZE
  333. cmp r0, r1
  334. blo 1b
  335. mcr p15, 0, r0, c7, c10, 4 @ drain WB
  336. mov pc, lr
  337. .align 5
  338. ENTRY(feroceon_range_dma_flush_range)
  339. mrs r2, cpsr
  340. cmp r1, r0
  341. subne r1, r1, #1 @ top address is inclusive
  342. orr r3, r2, #PSR_I_BIT
  343. msr cpsr_c, r3 @ disable interrupts
  344. mcr p15, 5, r0, c15, c15, 0 @ D clean/inv range start
  345. mcr p15, 5, r1, c15, c15, 1 @ D clean/inv range top
  346. msr cpsr_c, r2 @ restore interrupts
  347. mcr p15, 0, r0, c7, c10, 4 @ drain WB
  348. mov pc, lr
  349. /*
  350. * dma_map_area(start, size, dir)
  351. * - start - kernel virtual start address
  352. * - size - size of region
  353. * - dir - DMA direction
  354. */
  355. ENTRY(feroceon_dma_map_area)
  356. add r1, r1, r0
  357. cmp r2, #DMA_TO_DEVICE
  358. beq feroceon_dma_clean_range
  359. bcs feroceon_dma_inv_range
  360. b feroceon_dma_flush_range
  361. ENDPROC(feroceon_dma_map_area)
  362. /*
  363. * dma_map_area(start, size, dir)
  364. * - start - kernel virtual start address
  365. * - size - size of region
  366. * - dir - DMA direction
  367. */
  368. ENTRY(feroceon_range_dma_map_area)
  369. add r1, r1, r0
  370. cmp r2, #DMA_TO_DEVICE
  371. beq feroceon_range_dma_clean_range
  372. bcs feroceon_range_dma_inv_range
  373. b feroceon_range_dma_flush_range
  374. ENDPROC(feroceon_range_dma_map_area)
  375. /*
  376. * dma_unmap_area(start, size, dir)
  377. * - start - kernel virtual start address
  378. * - size - size of region
  379. * - dir - DMA direction
  380. */
  381. ENTRY(feroceon_dma_unmap_area)
  382. mov pc, lr
  383. ENDPROC(feroceon_dma_unmap_area)
  384. @ define struct cpu_cache_fns (see <asm/cacheflush.h> and proc-macros.S)
  385. define_cache_functions feroceon
  386. .macro range_alias basename
  387. .globl feroceon_range_\basename
  388. .type feroceon_range_\basename , %function
  389. .equ feroceon_range_\basename , feroceon_\basename
  390. .endm
  391. /*
  392. * Most of the cache functions are unchanged for this case.
  393. * Export suitable alias symbols for the unchanged functions:
  394. */
  395. range_alias flush_icache_all
  396. range_alias flush_user_cache_all
  397. range_alias flush_kern_cache_all
  398. range_alias flush_user_cache_range
  399. range_alias coherent_kern_range
  400. range_alias coherent_user_range
  401. range_alias dma_unmap_area
  402. define_cache_functions feroceon_range
  403. .align 5
  404. ENTRY(cpu_feroceon_dcache_clean_area)
  405. #if defined(CONFIG_CACHE_FEROCEON_L2) && \
  406. !defined(CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH)
  407. mov r2, r0
  408. mov r3, r1
  409. #endif
  410. 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
  411. add r0, r0, #CACHE_DLINESIZE
  412. subs r1, r1, #CACHE_DLINESIZE
  413. bhi 1b
  414. #if defined(CONFIG_CACHE_FEROCEON_L2) && \
  415. !defined(CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH)
  416. 1: mcr p15, 1, r2, c15, c9, 1 @ clean L2 entry
  417. add r2, r2, #CACHE_DLINESIZE
  418. subs r3, r3, #CACHE_DLINESIZE
  419. bhi 1b
  420. #endif
  421. mcr p15, 0, r0, c7, c10, 4 @ drain WB
  422. mov pc, lr
  423. /* =============================== PageTable ============================== */
  424. /*
  425. * cpu_feroceon_switch_mm(pgd)
  426. *
  427. * Set the translation base pointer to be as described by pgd.
  428. *
  429. * pgd: new page tables
  430. */
  431. .align 5
  432. ENTRY(cpu_feroceon_switch_mm)
  433. #ifdef CONFIG_MMU
  434. /*
  435. * Note: we wish to call __flush_whole_cache but we need to preserve
  436. * lr to do so. The only way without touching main memory is to
  437. * use r2 which is normally used to test the VM_EXEC flag, and
  438. * compensate locally for the skipped ops if it is not set.
  439. */
  440. mov r2, lr @ abuse r2 to preserve lr
  441. bl __flush_whole_cache
  442. @ if r2 contains the VM_EXEC bit then the next 2 ops are done already
  443. tst r2, #VM_EXEC
  444. mcreq p15, 0, ip, c7, c5, 0 @ invalidate I cache
  445. mcreq p15, 0, ip, c7, c10, 4 @ drain WB
  446. mcr p15, 0, r0, c2, c0, 0 @ load page table pointer
  447. mcr p15, 0, ip, c8, c7, 0 @ invalidate I & D TLBs
  448. mov pc, r2
  449. #else
  450. mov pc, lr
  451. #endif
  452. /*
  453. * cpu_feroceon_set_pte_ext(ptep, pte, ext)
  454. *
  455. * Set a PTE and flush it out
  456. */
  457. .align 5
  458. ENTRY(cpu_feroceon_set_pte_ext)
  459. #ifdef CONFIG_MMU
  460. armv3_set_pte_ext wc_disable=0
  461. mov r0, r0
  462. mcr p15, 0, r0, c7, c10, 1 @ clean D entry
  463. #if defined(CONFIG_CACHE_FEROCEON_L2) && \
  464. !defined(CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH)
  465. mcr p15, 1, r0, c15, c9, 1 @ clean L2 entry
  466. #endif
  467. mcr p15, 0, r0, c7, c10, 4 @ drain WB
  468. #endif
  469. mov pc, lr
  470. __CPUINIT
  471. .type __feroceon_setup, #function
  472. __feroceon_setup:
  473. mov r0, #0
  474. mcr p15, 0, r0, c7, c7 @ invalidate I,D caches on v4
  475. mcr p15, 0, r0, c7, c10, 4 @ drain write buffer on v4
  476. #ifdef CONFIG_MMU
  477. mcr p15, 0, r0, c8, c7 @ invalidate I,D TLBs on v4
  478. #endif
  479. adr r5, feroceon_crval
  480. ldmia r5, {r5, r6}
  481. mrc p15, 0, r0, c1, c0 @ get control register v4
  482. bic r0, r0, r5
  483. orr r0, r0, r6
  484. mov pc, lr
  485. .size __feroceon_setup, . - __feroceon_setup
  486. /*
  487. * B
  488. * R P
  489. * .RVI UFRS BLDP WCAM
  490. * .011 .001 ..11 0101
  491. *
  492. */
  493. .type feroceon_crval, #object
  494. feroceon_crval:
  495. crval clear=0x0000773f, mmuset=0x00003135, ucset=0x00001134
  496. __INITDATA
  497. @ define struct processor (see <asm/proc-fns.h> and proc-macros.S)
  498. define_processor_functions feroceon, dabort=v5t_early_abort, pabort=legacy_pabort
  499. .section ".rodata"
  500. string cpu_arch_name, "armv5te"
  501. string cpu_elf_name, "v5"
  502. string cpu_feroceon_name, "Feroceon"
  503. string cpu_88fr531_name, "Feroceon 88FR531-vd"
  504. string cpu_88fr571_name, "Feroceon 88FR571-vd"
  505. string cpu_88fr131_name, "Feroceon 88FR131"
  506. .align
  507. .section ".proc.info.init", #alloc, #execinstr
  508. .macro feroceon_proc_info name:req, cpu_val:req, cpu_mask:req, cpu_name:req, cache:req
  509. .type __\name\()_proc_info,#object
  510. __\name\()_proc_info:
  511. .long \cpu_val
  512. .long \cpu_mask
  513. .long PMD_TYPE_SECT | \
  514. PMD_SECT_BUFFERABLE | \
  515. PMD_SECT_CACHEABLE | \
  516. PMD_BIT4 | \
  517. PMD_SECT_AP_WRITE | \
  518. PMD_SECT_AP_READ
  519. .long PMD_TYPE_SECT | \
  520. PMD_BIT4 | \
  521. PMD_SECT_AP_WRITE | \
  522. PMD_SECT_AP_READ
  523. b __feroceon_setup
  524. .long cpu_arch_name
  525. .long cpu_elf_name
  526. .long HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP
  527. .long \cpu_name
  528. .long feroceon_processor_functions
  529. .long v4wbi_tlb_fns
  530. .long feroceon_user_fns
  531. .long \cache
  532. .size __\name\()_proc_info, . - __\name\()_proc_info
  533. .endm
  534. #ifdef CONFIG_CPU_FEROCEON_OLD_ID
  535. feroceon_proc_info feroceon_old_id, 0x41009260, 0xff00fff0, \
  536. cpu_name=cpu_feroceon_name, cache=feroceon_cache_fns
  537. #endif
  538. feroceon_proc_info 88fr531, 0x56055310, 0xfffffff0, cpu_88fr531_name, \
  539. cache=feroceon_cache_fns
  540. feroceon_proc_info 88fr571, 0x56155710, 0xfffffff0, cpu_88fr571_name, \
  541. cache=feroceon_range_cache_fns
  542. feroceon_proc_info 88fr131, 0x56251310, 0xfffffff0, cpu_88fr131_name, \
  543. cache=feroceon_range_cache_fns