proc-arm9tdmi.S 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * linux/arch/arm/mm/proc-arm9tdmi.S: utility functions for ARM9TDMI
  4. *
  5. * Copyright (C) 2003-2006 Hyok S. Choi <[email protected]>
  6. */
  7. #include <linux/linkage.h>
  8. #include <linux/init.h>
  9. #include <linux/pgtable.h>
  10. #include <asm/assembler.h>
  11. #include <asm/asm-offsets.h>
  12. #include <asm/hwcap.h>
  13. #include <asm/pgtable-hwdef.h>
  14. #include <asm/ptrace.h>
  15. #include "proc-macros.S"
  16. .text
  17. /*
  18. * cpu_arm9tdmi_proc_init()
  19. * cpu_arm9tdmi_do_idle()
  20. * cpu_arm9tdmi_dcache_clean_area()
  21. * cpu_arm9tdmi_switch_mm()
  22. *
  23. * These are not required.
  24. */
  25. ENTRY(cpu_arm9tdmi_proc_init)
  26. ENTRY(cpu_arm9tdmi_do_idle)
  27. ENTRY(cpu_arm9tdmi_dcache_clean_area)
  28. ENTRY(cpu_arm9tdmi_switch_mm)
  29. ret lr
  30. /*
  31. * cpu_arm9tdmi_proc_fin()
  32. */
  33. ENTRY(cpu_arm9tdmi_proc_fin)
  34. ret lr
  35. /*
  36. * Function: cpu_arm9tdmi_reset(loc)
  37. * Params : loc(r0) address to jump to
  38. * Purpose : Sets up everything for a reset and jump to the location for soft reset.
  39. */
  40. .pushsection .idmap.text, "ax"
  41. ENTRY(cpu_arm9tdmi_reset)
  42. ret r0
  43. ENDPROC(cpu_arm9tdmi_reset)
  44. .popsection
  45. .type __arm9tdmi_setup, #function
  46. __arm9tdmi_setup:
  47. ret lr
  48. .size __arm9tdmi_setup, . - __arm9tdmi_setup
  49. __INITDATA
  50. @ define struct processor (see <asm/proc-fns.h> and proc-macros.S)
  51. define_processor_functions arm9tdmi, dabort=nommu_early_abort, pabort=legacy_pabort, nommu=1
  52. .section ".rodata"
  53. string cpu_arch_name, "armv4t"
  54. string cpu_elf_name, "v4"
  55. string cpu_arm9tdmi_name, "ARM9TDMI"
  56. string cpu_p2001_name, "P2001"
  57. .align
  58. .section ".proc.info.init", "a"
  59. .macro arm9tdmi_proc_info name:req, cpu_val:req, cpu_mask:req, cpu_name:req
  60. .type __\name\()_proc_info, #object
  61. __\name\()_proc_info:
  62. .long \cpu_val
  63. .long \cpu_mask
  64. .long 0
  65. .long 0
  66. initfn __arm9tdmi_setup, __\name\()_proc_info
  67. .long cpu_arch_name
  68. .long cpu_elf_name
  69. .long HWCAP_SWP | HWCAP_THUMB | HWCAP_26BIT
  70. .long \cpu_name
  71. .long arm9tdmi_processor_functions
  72. .long 0
  73. .long 0
  74. .long v4_cache_fns
  75. .size __\name\()_proc_info, . - __\name\()_proc_info
  76. .endm
  77. arm9tdmi_proc_info arm9tdmi, 0x41009900, 0xfff8ff00, cpu_arm9tdmi_name
  78. arm9tdmi_proc_info p2001, 0x41029000, 0xffffffff, cpu_p2001_name