Advertisement
brpr

dts 3.0 - electric boogaloo

Aug 21st, 2021
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1.  
  2. &nand {
  3. status="okay";
  4.  
  5. partitions {
  6. compatible="fixed-partitions";
  7. #address-cells = <1>;
  8. #size-cells = <1>;
  9.  
  10. partition@0 {
  11. label = "Bootloader";
  12. reg = <0x000000000000 0x000e0000>;
  13. };
  14. partition@000000100000 {
  15. label = "ubi";
  16. reg = <0x000000100000 0x07e00000>;
  17. };
  18. cal: partition@000007f00000 {
  19. label = "caldata";
  20. reg = <0x000007f00000 0x00010000>;
  21. };
  22. };
  23. };
  24.  
  25. &wmac {
  26. status="okay";
  27. mtd-cal-data = <&cal 0x1000>;
  28.  
  29. wifi@0,0 {
  30. compatible = "qcom,ath9k";
  31. };
  32. };
  33. &pcie0 {
  34. status = "okay";
  35. mtd-cal-data = <&cal 0x5000>;
  36.  
  37. wifi@0,0 {
  38. compatible = "qcom,ath10k";
  39. };
  40. };
  41.  
  42.  
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement