proc-arm7tdmi.S 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * linux/arch/arm/mm/proc-arm7tdmi.S: utility functions for ARM7TDMI
  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_arm7tdmi_proc_init()
  19. * cpu_arm7tdmi_do_idle()
  20. * cpu_arm7tdmi_dcache_clean_area()
  21. * cpu_arm7tdmi_switch_mm()
  22. *
  23. * These are not required.
  24. */
  25. ENTRY(cpu_arm7tdmi_proc_init)
  26. ENTRY(cpu_arm7tdmi_do_idle)
  27. ENTRY(cpu_arm7tdmi_dcache_clean_area)
  28. ENTRY(cpu_arm7tdmi_switch_mm)
  29. ret lr
  30. /*
  31. * cpu_arm7tdmi_proc_fin()
  32. */
  33. ENTRY(cpu_arm7tdmi_proc_fin)
  34. ret lr
  35. /*
  36. * Function: cpu_arm7tdmi_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_arm7tdmi_reset)
  42. ret r0
  43. ENDPROC(cpu_arm7tdmi_reset)
  44. .popsection
  45. .type __arm7tdmi_setup, #function
  46. __arm7tdmi_setup:
  47. ret lr
  48. .size __arm7tdmi_setup, . - __arm7tdmi_setup
  49. __INITDATA
  50. @ define struct processor (see <asm/proc-fns.h> and proc-macros.S)
  51. define_processor_functions arm7tdmi, dabort=v4t_late_abort, pabort=legacy_pabort, nommu=1
  52. .section ".rodata"
  53. string cpu_arch_name, "armv4t"
  54. string cpu_elf_name, "v4"
  55. string cpu_arm7tdmi_name, "ARM7TDMI"
  56. string cpu_triscenda7_name, "Triscend-A7x"
  57. string cpu_at91_name, "Atmel-AT91M40xxx"
  58. string cpu_s3c3410_name, "Samsung-S3C3410"
  59. string cpu_s3c44b0x_name, "Samsung-S3C44B0x"
  60. string cpu_s3c4510b_name, "Samsung-S3C4510B"
  61. string cpu_s3c4530_name, "Samsung-S3C4530"
  62. string cpu_netarm_name, "NETARM"
  63. .align
  64. .section ".proc.info.init", "a"
  65. .macro arm7tdmi_proc_info name:req, cpu_val:req, cpu_mask:req, cpu_name:req, \
  66. extra_hwcaps=0
  67. .type __\name\()_proc_info, #object
  68. __\name\()_proc_info:
  69. .long \cpu_val
  70. .long \cpu_mask
  71. .long 0
  72. .long 0
  73. initfn __arm7tdmi_setup, __\name\()_proc_info
  74. .long cpu_arch_name
  75. .long cpu_elf_name
  76. .long HWCAP_SWP | HWCAP_26BIT | ( \extra_hwcaps )
  77. .long \cpu_name
  78. .long arm7tdmi_processor_functions
  79. .long 0
  80. .long 0
  81. .long v4_cache_fns
  82. .size __\name\()_proc_info, . - __\name\()_proc_info
  83. .endm
  84. arm7tdmi_proc_info arm7tdmi, 0x41007700, 0xfff8ff00, \
  85. cpu_arm7tdmi_name
  86. arm7tdmi_proc_info triscenda7, 0x0001d2ff, 0x0001ffff, \
  87. cpu_triscenda7_name, extra_hwcaps=HWCAP_THUMB
  88. arm7tdmi_proc_info at91, 0x14000040, 0xfff000e0, \
  89. cpu_at91_name, extra_hwcaps=HWCAP_THUMB
  90. arm7tdmi_proc_info s3c4510b, 0x36365000, 0xfffff000, \
  91. cpu_s3c4510b_name, extra_hwcaps=HWCAP_THUMB
  92. arm7tdmi_proc_info s3c4530, 0x4c000000, 0xfff000e0, \
  93. cpu_s3c4530_name, extra_hwcaps=HWCAP_THUMB
  94. arm7tdmi_proc_info s3c3410, 0x34100000, 0xffff0000, \
  95. cpu_s3c3410_name, extra_hwcaps=HWCAP_THUMB
  96. arm7tdmi_proc_info s3c44b0x, 0x44b00000, 0xffff0000, \
  97. cpu_s3c44b0x_name, extra_hwcaps=HWCAP_THUMB