proc-arm9tdmi.S 2.3 KB

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