mips-cpc.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * Copyright (C) 2013 Imagination Technologies
  3. * Author: Paul Burton <paul.burton@imgtec.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License as published by the
  7. * Free Software Foundation; either version 2 of the License, or (at your
  8. * option) any later version.
  9. */
  10. #include <linux/errno.h>
  11. #include <linux/percpu.h>
  12. #include <linux/spinlock.h>
  13. #include <asm/mips-cm.h>
  14. #include <asm/mips-cpc.h>
  15. void __iomem *mips_cpc_base;
  16. static DEFINE_PER_CPU_ALIGNED(spinlock_t, cpc_core_lock);
  17. static DEFINE_PER_CPU_ALIGNED(unsigned long, cpc_core_lock_flags);
  18. phys_addr_t __weak mips_cpc_phys_base(void)
  19. {
  20. u32 cpc_base;
  21. if (!mips_cm_present())
  22. return 0;
  23. if (!(read_gcr_cpc_status() & CM_GCR_CPC_STATUS_EX_MSK))
  24. return 0;
  25. /* If the CPC is already enabled, leave it so */
  26. cpc_base = read_gcr_cpc_base();
  27. if (cpc_base & CM_GCR_CPC_BASE_CPCEN_MSK)
  28. return cpc_base & CM_GCR_CPC_BASE_CPCBASE_MSK;
  29. /* Otherwise, give it the default address & enable it */
  30. cpc_base = mips_cpc_default_phys_base();
  31. write_gcr_cpc_base(cpc_base | CM_GCR_CPC_BASE_CPCEN_MSK);
  32. return cpc_base;
  33. }
  34. int mips_cpc_probe(void)
  35. {
  36. phys_addr_t addr;
  37. unsigned cpu;
  38. for_each_possible_cpu(cpu)
  39. spin_lock_init(&per_cpu(cpc_core_lock, cpu));
  40. addr = mips_cpc_phys_base();
  41. if (!addr)
  42. return -ENODEV;
  43. mips_cpc_base = ioremap_nocache(addr, 0x8000);
  44. if (!mips_cpc_base)
  45. return -ENXIO;
  46. return 0;
  47. }
  48. void mips_cpc_lock_other(unsigned int core)
  49. {
  50. unsigned curr_core;
  51. preempt_disable();
  52. curr_core = current_cpu_data.core;
  53. spin_lock_irqsave(&per_cpu(cpc_core_lock, curr_core),
  54. per_cpu(cpc_core_lock_flags, curr_core));
  55. write_cpc_cl_other(core << CPC_Cx_OTHER_CORENUM_SHF);
  56. }
  57. void mips_cpc_unlock_other(void)
  58. {
  59. unsigned curr_core = current_cpu_data.core;
  60. spin_unlock_irqrestore(&per_cpu(cpc_core_lock, curr_core),
  61. per_cpu(cpc_core_lock_flags, curr_core));
  62. preempt_enable();
  63. }