Advertisement
Guest User

Untitled

a guest
Feb 26th, 2013
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. /*
  2. * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. /dts-v1/;
  9. /plugin/;
  10.  
  11. / {
  12. compatible = "ti,beaglebone", "ti,beaglebone-black";
  13.  
  14. /* identification */
  15. part-number = "pinctrl-test-7";
  16.  
  17. fragment@0 {
  18. target = <&am33xx_pinmux>;
  19. __overlay__ {
  20. test: pinctrl_test_7_pins {
  21. pinctrl-single,pins = <
  22. 0x164 0x07 /* P9_42 muxRegOffset, OUTPUT | MODE7 */
  23. >;
  24. };
  25. };
  26. };
  27.  
  28. fragment@1 {
  29. target = <&ocp>;
  30. __overlay__ {
  31. /* avoid stupid warning */
  32. #address-cells = <1>;
  33. #size-cells = <1>;
  34.  
  35. test_helper: helper {
  36. compatible = "bone-pinmux-helper";
  37. pinctrl-names = "default";
  38. pinctrl-0 = <&pinctrl_test_7_pins>;
  39. status = "okay";
  40. };
  41. };
  42. };
  43. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement