sound.txt 947 B

123456789101112131415161718192021222324252627
  1. Exynos Sound Subsystem
  2. The device node for sound subsytem which contains codec and i2s block
  3. that is a part of Exynos5250
  4. Required properties :
  5. - compatible : Should be "samsung,exynos-sound" for sound
  6. - samsung,i2s-epll-clock-frequency : epll clock output frequency in Hz
  7. - samsung,i2s-sampling-rate : sampling rate, default is 48000
  8. - samsung,i2s-bits-per-sample : sample width, defalut is 16 bit
  9. - samsung,i2s-channels : nummber of channels, default is 2
  10. - samsung,i2s-lr-clk-framesize : lr clock frame size
  11. - samsung,i2s-bit-clk-framesize : bit clock frame size
  12. - samsung,codec-type : sound codec type
  13. Example:
  14. sound@12d60000 {
  15. compatible = "samsung,exynos-sound"
  16. samsung,i2s-epll-clock-frequency = <192000000>;
  17. samsung,i2s-sampling-rate = <48000>;
  18. samsung,i2s-bits-per-sample = <16>;
  19. samsung,i2s-channels = <2>;
  20. samsung,i2s-lr-clk-framesize = <256>;
  21. samsung,i2s-bit-clk-framesize = <32>;
  22. samsung,codec-type = "wm8994";
  23. };