nvidia,tegra20-gmi.txt 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. Device tree bindings for NVIDIA Tegra Generic Memory Interface bus
  2. The Generic Memory Interface bus enables memory transfers between internal and
  3. external memory. Can be used to attach various high speed devices such as
  4. synchronous/asynchronous NOR, FPGA, UARTS and more.
  5. The actual devices are instantiated from the child nodes of a GMI node.
  6. Required properties:
  7. - compatible : Should contain one of the following:
  8. For Tegra20 must contain "nvidia,tegra20-gmi".
  9. For Tegra30 must contain "nvidia,tegra30-gmi".
  10. - reg: Should contain GMI controller registers location and length.
  11. - clocks: Must contain an entry for each entry in clock-names.
  12. - clock-names: Must include the following entries: "gmi"
  13. - resets : Must contain an entry for each entry in reset-names.
  14. - reset-names : Must include the following entries: "gmi"
  15. - #address-cells: The number of cells used to represent physical base
  16. addresses in the GMI address space. Should be 2.
  17. - #size-cells: The number of cells used to represent the size of an address
  18. range in the GMI address space. Should be 1.
  19. - ranges: Must be set up to reflect the memory layout with three integer values
  20. for each chip-select line in use (only one entry is supported, see below
  21. comments):
  22. <cs-number> <offset> <physical address of mapping> <size>
  23. Note that the GMI controller does not have any internal chip-select address
  24. decoding, because of that chip-selects either need to be managed via software
  25. or by employing external chip-select decoding logic.
  26. If external chip-select logic is used to support multiple devices it is assumed
  27. that the devices use the same timing and so are probably the same type. It also
  28. assumes that they can fit in the 256MB address range. In this case only one
  29. child device is supported which represents the active chip-select line, see
  30. examples for more insight.
  31. The chip-select number is decoded from the child nodes second address cell of
  32. 'ranges' property, if 'ranges' property is not present or empty chip-select will
  33. then be decoded from the first cell of the 'reg' property.
  34. Optional child cs node properties:
  35. - nvidia,snor-data-width-32bit: Use 32bit data-bus, default is 16bit.
  36. - nvidia,snor-mux-mode: Enable address/data MUX mode.
  37. - nvidia,snor-rdy-active-before-data: Assert RDY signal one cycle before data.
  38. If omitted it will be asserted with data.
  39. - nvidia,snor-rdy-active-high: RDY signal is active high
  40. - nvidia,snor-adv-active-high: ADV signal is active high
  41. - nvidia,snor-oe-active-high: WE/OE signal is active high
  42. - nvidia,snor-cs-active-high: CS signal is active high
  43. Note that there is some special handling for the timing values.
  44. From Tegra TRM:
  45. Programming 0 means 1 clock cycle: actual cycle = programmed cycle + 1
  46. - nvidia,snor-muxed-width: Number of cycles MUX address/data asserted on the
  47. bus. Valid values are 0-15, default is 1
  48. - nvidia,snor-hold-width: Number of cycles CE stays asserted after the
  49. de-assertion of WR_N (in case of SLAVE/MASTER Request) or OE_N
  50. (in case of MASTER Request). Valid values are 0-15, default is 1
  51. - nvidia,snor-adv-width: Number of cycles during which ADV stays asserted.
  52. Valid values are 0-15, default is 1.
  53. - nvidia,snor-ce-width: Number of cycles before CE is asserted.
  54. Valid values are 0-15, default is 4
  55. - nvidia,snor-we-width: Number of cycles during which WE stays asserted.
  56. Valid values are 0-15, default is 1
  57. - nvidia,snor-oe-width: Number of cycles during which OE stays asserted.
  58. Valid values are 0-255, default is 1
  59. - nvidia,snor-wait-width: Number of cycles before READY is asserted.
  60. Valid values are 0-255, default is 3
  61. Example with two SJA1000 CAN controllers connected to the GMI bus. We wrap the
  62. controllers with a simple-bus node since they are all connected to the same
  63. chip-select (CS4), in this example external address decoding is provided:
  64. gmi@70009000 {
  65. compatible = "nvidia,tegra20-gmi";
  66. reg = <0x70009000 0x1000>;
  67. #address-cells = <2>;
  68. #size-cells = <1>;
  69. clocks = <&tegra_car TEGRA20_CLK_NOR>;
  70. clock-names = "gmi";
  71. resets = <&tegra_car 42>;
  72. reset-names = "gmi";
  73. ranges = <4 0 0xd0000000 0xfffffff>;
  74. bus@4,0 {
  75. compatible = "simple-bus";
  76. #address-cells = <1>;
  77. #size-cells = <1>;
  78. ranges = <0 4 0 0x40100>;
  79. nvidia,snor-mux-mode;
  80. nvidia,snor-adv-active-high;
  81. can@0 {
  82. reg = <0 0x100>;
  83. ...
  84. };
  85. can@40000 {
  86. reg = <0x40000 0x100>;
  87. ...
  88. };
  89. };
  90. };
  91. Example with one SJA1000 CAN controller connected to the GMI bus
  92. on CS4:
  93. gmi@70009000 {
  94. compatible = "nvidia,tegra20-gmi";
  95. reg = <0x70009000 0x1000>;
  96. #address-cells = <2>;
  97. #size-cells = <1>;
  98. clocks = <&tegra_car TEGRA20_CLK_NOR>;
  99. clock-names = "gmi";
  100. resets = <&tegra_car 42>;
  101. reset-names = "gmi";
  102. ranges = <4 0 0xd0000000 0xfffffff>;
  103. can@4,0 {
  104. reg = <4 0 0x100>;
  105. nvidia,snor-mux-mode;
  106. nvidia,snor-adv-active-high;
  107. ...
  108. };
  109. };