Advertisement
Guest User

Untitled

a guest
Apr 28th, 2016
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1.  
  2. /dts-v1/;
  3. #include "sun8i-a33.dtsi"
  4. #include "sun8i-q8-common.dtsi"
  5.  
  6. / {
  7. model = "Q8 A33 Tablet";
  8. compatible = "allwinner,q8-a33", "allwinner,sun8i-a33";
  9.  
  10. wifi_pwrseq: wifi_pwrseq {
  11. compatible = "mmc-pwrseq-simple";
  12. pinctrl-names = "default";
  13. pinctrl-0 = <&wifi_pwrseq_pin_rtl>;
  14. reset-gpios = <&r_pio 0 11 GPIO_ACTIVE_LOW>; /* PL11 rtl8723bs */
  15. };
  16. };
  17.  
  18. /*
  19. * FIXME for now we only support host mode and rely on u-boot to have
  20. * turned on Vbus which is controlled by the axp223 pmic on the board.
  21. *
  22. * Once we have axp223 support we should switch to fully supporting otg.
  23. */
  24. &usb_otg {
  25. dr_mode = "host";
  26. status = "okay";
  27. };
  28.  
  29. &usbphy {
  30. status = "okay";
  31. };
  32.  
  33. &mmc1 {
  34. pinctrl-names = "default";
  35. pinctrl-0 = <&mmc1_pins_a>;
  36. vmmc-supply = <&reg_dcdc1>;
  37. bus-width = <4>;
  38. non-removable;
  39. status = "okay";
  40. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement