clk-system.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * Copyright (C) 2016 Atmel Corporation
  3. * Wenyou.Yang <wenyou.yang@atmel.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <common.h>
  8. #include <clk-uclass.h>
  9. #include <dm/device.h>
  10. #include <linux/io.h>
  11. #include <mach/at91_pmc.h>
  12. #include "pmc.h"
  13. #define SYSTEM_MAX_ID 31
  14. /**
  15. * at91_system_clk_bind() - for the system clock driver
  16. * Recursively bind its children as clk devices.
  17. *
  18. * @return: 0 on success, or negative error code on failure
  19. */
  20. static int at91_system_clk_bind(struct udevice *dev)
  21. {
  22. return at91_clk_sub_device_bind(dev, "system-clk");
  23. }
  24. static const struct udevice_id at91_system_clk_match[] = {
  25. { .compatible = "atmel,at91rm9200-clk-system" },
  26. {}
  27. };
  28. U_BOOT_DRIVER(at91_system_clk) = {
  29. .name = "at91-system-clk",
  30. .id = UCLASS_MISC,
  31. .of_match = at91_system_clk_match,
  32. .bind = at91_system_clk_bind,
  33. };
  34. /*----------------------------------------------------------*/
  35. static inline int is_pck(int id)
  36. {
  37. return (id >= 8) && (id <= 15);
  38. }
  39. static int system_clk_enable(struct clk *clk)
  40. {
  41. struct pmc_platdata *plat = dev_get_platdata(clk->dev);
  42. struct at91_pmc *pmc = plat->reg_base;
  43. u32 mask;
  44. if (clk->id > SYSTEM_MAX_ID)
  45. return -EINVAL;
  46. mask = BIT(clk->id);
  47. writel(mask, &pmc->scer);
  48. /**
  49. * For the programmable clocks the Ready status in the PMC
  50. * status register should be checked after enabling.
  51. * For other clocks this is unnecessary.
  52. */
  53. if (!is_pck(clk->id))
  54. return 0;
  55. while (!(readl(&pmc->sr) & mask))
  56. ;
  57. return 0;
  58. }
  59. static struct clk_ops system_clk_ops = {
  60. .of_xlate = at91_clk_of_xlate,
  61. .enable = system_clk_enable,
  62. };
  63. U_BOOT_DRIVER(system_clk) = {
  64. .name = "system-clk",
  65. .id = UCLASS_CLK,
  66. .probe = at91_clk_probe,
  67. .platdata_auto_alloc_size = sizeof(struct pmc_platdata),
  68. .ops = &system_clk_ops,
  69. };