mips-cpc.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. /**
  19. * mips_cpc_phys_base - retrieve the physical base address of the CPC
  20. *
  21. * This function returns the physical base address of the Cluster Power
  22. * Controller memory mapped registers, or 0 if no Cluster Power Controller
  23. * is present.
  24. */
  25. static phys_addr_t mips_cpc_phys_base(void)
  26. {
  27. unsigned long cpc_base;
  28. if (!mips_cm_present())
  29. return 0;
  30. if (!(read_gcr_cpc_status() & CM_GCR_CPC_STATUS_EX_MSK))
  31. return 0;
  32. /* If the CPC is already enabled, leave it so */
  33. cpc_base = read_gcr_cpc_base();
  34. if (cpc_base & CM_GCR_CPC_BASE_CPCEN_MSK)
  35. return cpc_base & CM_GCR_CPC_BASE_CPCBASE_MSK;
  36. /* Otherwise, give it the default address & enable it */
  37. cpc_base = mips_cpc_default_phys_base();
  38. write_gcr_cpc_base(cpc_base | CM_GCR_CPC_BASE_CPCEN_MSK);
  39. return cpc_base;
  40. }
  41. int mips_cpc_probe(void)
  42. {
  43. phys_addr_t addr;
  44. unsigned cpu;
  45. for_each_possible_cpu(cpu)
  46. spin_lock_init(&per_cpu(cpc_core_lock, cpu));
  47. addr = mips_cpc_phys_base();
  48. if (!addr)
  49. return -ENODEV;
  50. mips_cpc_base = ioremap_nocache(addr, 0x8000);
  51. if (!mips_cpc_base)
  52. return -ENXIO;
  53. return 0;
  54. }
  55. void mips_cpc_lock_other(unsigned int core)
  56. {
  57. unsigned curr_core;
  58. preempt_disable();
  59. curr_core = current_cpu_data.core;
  60. spin_lock_irqsave(&per_cpu(cpc_core_lock, curr_core),
  61. per_cpu(cpc_core_lock_flags, curr_core));
  62. write_cpc_cl_other(core << CPC_Cx_OTHER_CORENUM_SHF);
  63. /*
  64. * Ensure the core-other region reflects the appropriate core &
  65. * VP before any accesses to it occur.
  66. */
  67. mb();
  68. }
  69. void mips_cpc_unlock_other(void)
  70. {
  71. unsigned curr_core = current_cpu_data.core;
  72. spin_unlock_irqrestore(&per_cpu(cpc_core_lock, curr_core),
  73. per_cpu(cpc_core_lock_flags, curr_core));
  74. preempt_enable();
  75. }