pj4-cp0.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * linux/arch/arm/kernel/pj4-cp0.c
  3. *
  4. * PJ4 iWMMXt coprocessor context switching and handling
  5. *
  6. * Copyright (c) 2010 Marvell International Inc.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #include <linux/module.h>
  13. #include <linux/types.h>
  14. #include <linux/kernel.h>
  15. #include <linux/signal.h>
  16. #include <linux/sched.h>
  17. #include <linux/init.h>
  18. #include <linux/io.h>
  19. #include <asm/thread_notify.h>
  20. static int iwmmxt_do(struct notifier_block *self, unsigned long cmd, void *t)
  21. {
  22. struct thread_info *thread = t;
  23. switch (cmd) {
  24. case THREAD_NOTIFY_FLUSH:
  25. /*
  26. * flush_thread() zeroes thread->fpstate, so no need
  27. * to do anything here.
  28. *
  29. * FALLTHROUGH: Ensure we don't try to overwrite our newly
  30. * initialised state information on the first fault.
  31. */
  32. case THREAD_NOTIFY_EXIT:
  33. iwmmxt_task_release(thread);
  34. break;
  35. case THREAD_NOTIFY_SWITCH:
  36. iwmmxt_task_switch(thread);
  37. break;
  38. }
  39. return NOTIFY_DONE;
  40. }
  41. static struct notifier_block iwmmxt_notifier_block = {
  42. .notifier_call = iwmmxt_do,
  43. };
  44. static u32 __init pj4_cp_access_read(void)
  45. {
  46. u32 value;
  47. __asm__ __volatile__ (
  48. "mrc p15, 0, %0, c1, c0, 2\n\t"
  49. : "=r" (value));
  50. return value;
  51. }
  52. static void __init pj4_cp_access_write(u32 value)
  53. {
  54. u32 temp;
  55. __asm__ __volatile__ (
  56. "mcr p15, 0, %1, c1, c0, 2\n\t"
  57. "mrc p15, 0, %0, c1, c0, 2\n\t"
  58. "mov %0, %0\n\t"
  59. "sub pc, pc, #4\n\t"
  60. : "=r" (temp) : "r" (value));
  61. }
  62. /*
  63. * Disable CP0/CP1 on boot, and let call_fpe() and the iWMMXt lazy
  64. * switch code handle iWMMXt context switching.
  65. */
  66. static int __init pj4_cp0_init(void)
  67. {
  68. u32 cp_access;
  69. cp_access = pj4_cp_access_read() & ~0xf;
  70. pj4_cp_access_write(cp_access);
  71. printk(KERN_INFO "PJ4 iWMMXt coprocessor enabled.\n");
  72. elf_hwcap |= HWCAP_IWMMXT;
  73. thread_register_notifier(&iwmmxt_notifier_block);
  74. return 0;
  75. }
  76. late_initcall(pj4_cp0_init);