clk-exynos-audss.txt 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. * Samsung Audio Subsystem Clock Controller
  2. The Samsung Audio Subsystem clock controller generates and supplies clocks
  3. to Audio Subsystem block available in the S5PV210 and Exynos SoCs. The clock
  4. binding described here is applicable to all SoCs in Exynos family.
  5. Required Properties:
  6. - compatible: should be one of the following:
  7. - "samsung,exynos4210-audss-clock" - controller compatible with all Exynos4 SoCs.
  8. - "samsung,exynos5250-audss-clock" - controller compatible with Exynos5250
  9. SoCs.
  10. - "samsung,exynos5420-audss-clock" - controller compatible with Exynos5420
  11. SoCs.
  12. - reg: physical base address and length of the controller's register set.
  13. - #clock-cells: should be 1.
  14. - clocks:
  15. - pll_ref: Fixed rate PLL reference clock, parent of mout_audss. "fin_pll"
  16. is used if not specified.
  17. - pll_in: Input PLL to the AudioSS block, parent of mout_audss. "fout_epll"
  18. is used if not specified.
  19. - cdclk: External i2s clock, parent of mout_i2s. "cdclk0" is used if not
  20. specified.
  21. - sclk_audio: Audio bus clock, parent of mout_i2s. "sclk_audio0" is used if
  22. not specified.
  23. - sclk_pcm_in: PCM clock, parent of sclk_pcm. "sclk_pcm0" is used if not
  24. specified.
  25. - clock-names: Aliases for the above clocks. They should be "pll_ref",
  26. "pll_in", "cdclk", "sclk_audio", and "sclk_pcm_in" respectively.
  27. The following is the list of clocks generated by the controller. Each clock is
  28. assigned an identifier and client nodes use this identifier to specify the
  29. clock which they consume. Some of the clocks are available only on a particular
  30. Exynos4 SoC and this is specified where applicable.
  31. Provided clocks:
  32. Clock ID SoC (if specific)
  33. -----------------------------------------------
  34. mout_audss 0
  35. mout_i2s 1
  36. dout_srp 2
  37. dout_aud_bus 3
  38. dout_i2s 4
  39. srp_clk 5
  40. i2s_bus 6
  41. sclk_i2s 7
  42. pcm_bus 8
  43. sclk_pcm 9
  44. adma 10 Exynos5420
  45. Example 1: An example of a clock controller node using the default input
  46. clock names is listed below.
  47. clock_audss: audss-clock-controller@3810000 {
  48. compatible = "samsung,exynos5250-audss-clock";
  49. reg = <0x03810000 0x0C>;
  50. #clock-cells = <1>;
  51. };
  52. Example 2: An example of a clock controller node with the input clocks
  53. specified.
  54. clock_audss: audss-clock-controller@3810000 {
  55. compatible = "samsung,exynos5250-audss-clock";
  56. reg = <0x03810000 0x0C>;
  57. #clock-cells = <1>;
  58. clocks = <&clock 1>, <&clock 7>, <&clock 138>, <&clock 160>,
  59. <&ext_i2s_clk>;
  60. clock-names = "pll_ref", "pll_in", "sclk_audio", "sclk_pcm_in", "cdclk";
  61. };
  62. Example 3: I2S controller node that consumes the clock generated by the clock
  63. controller. Refer to the standard clock bindings for information
  64. about 'clocks' and 'clock-names' property.
  65. i2s0: i2s@03830000 {
  66. compatible = "samsung,i2s-v5";
  67. reg = <0x03830000 0x100>;
  68. dmas = <&pdma0 10
  69. &pdma0 9
  70. &pdma0 8>;
  71. dma-names = "tx", "rx", "tx-sec";
  72. clocks = <&clock_audss EXYNOS_I2S_BUS>,
  73. <&clock_audss EXYNOS_I2S_BUS>,
  74. <&clock_audss EXYNOS_SCLK_I2S>,
  75. <&clock_audss EXYNOS_MOUT_AUDSS>,
  76. <&clock_audss EXYNOS_MOUT_I2S>;
  77. clock-names = "iis", "i2s_opclk0", "i2s_opclk1",
  78. "mout_audss", "mout_i2s";
  79. };