at91rm9200ek.dts 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * at91rm9200ek.dts - Device Tree file for Atmel AT91RM9200 evaluation kit
  3. *
  4. * Copyright (C) 2012 Joachim Eastwood <manabian@gmail.com>
  5. *
  6. * Licensed under GPLv2 only
  7. */
  8. /dts-v1/;
  9. /include/ "at91rm9200.dtsi"
  10. / {
  11. model = "Atmel AT91RM9200 evaluation kit";
  12. compatible = "atmel,at91rm9200ek", "atmel,at91rm9200";
  13. memory {
  14. reg = <0x20000000 0x4000000>;
  15. };
  16. clocks {
  17. #address-cells = <1>;
  18. #size-cells = <1>;
  19. ranges;
  20. main_clock: clock@0 {
  21. compatible = "atmel,osc", "fixed-clock";
  22. clock-frequency = <18432000>;
  23. };
  24. };
  25. ahb {
  26. apb {
  27. dbgu: serial@fffff200 {
  28. status = "okay";
  29. };
  30. usart1: serial@fffc4000 {
  31. pinctrl-0 =
  32. <&pinctrl_uart1
  33. &pinctrl_uart1_rts
  34. &pinctrl_uart1_cts
  35. &pinctrl_uart1_dtr_dsr
  36. &pinctrl_uart1_dcd
  37. &pinctrl_uart1_ri>;
  38. status = "okay";
  39. };
  40. usb1: gadget@fffb0000 {
  41. atmel,vbus-gpio = <&pioD 4 0>;
  42. status = "okay";
  43. };
  44. };
  45. usb0: ohci@00300000 {
  46. num-ports = <2>;
  47. status = "okay";
  48. };
  49. };
  50. leds {
  51. compatible = "gpio-leds";
  52. ds2 {
  53. label = "green";
  54. gpios = <&pioB 0 0x1>;
  55. linux,default-trigger = "mmc0";
  56. };
  57. ds4 {
  58. label = "yellow";
  59. gpios = <&pioB 1 0x1>;
  60. linux,default-trigger = "heartbeat";
  61. };
  62. ds6 {
  63. label = "red";
  64. gpios = <&pioB 2 0x1>;
  65. };
  66. };
  67. };