Advertisement
Guest User

Untitled

a guest
Oct 6th, 2013
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 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 = "uart5";
  16.  
  17. fragment@0 {
  18. target = <&am33xx_pinmux>;
  19. __overlay__ {
  20. pinctrl_uart5: pinctrl_uart5_pins {
  21. pinctrl-single,pins = <
  22. 0x070 0x26 /* P9_11 = GPIO0_30 = GPMC_WAIT0 , MODE6 */
  23. 0x074 0x06 /* P9_13 = GPIO0_31 = GPMC_WPN, MODE6 */
  24. >;
  25. };
  26. };
  27. };
  28.  
  29. fragment@1{
  30. target = <&uart5>;
  31. __overlay__ {
  32. status = "okay";
  33. };
  34. };
  35.  
  36. fragment@2 {
  37. target = <&ocp>;
  38. __overlay__ {
  39. test_helper: helper {
  40. compatible = "bone-pinmux-helper";
  41. pinctrl-names = "default";
  42. pinctrl-0 = <&pinctrl_uart5>;
  43. status = "okay";
  44. };
  45. };
  46. };
  47. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement