Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b6b2fe5b authored by Mike Turquette's avatar Mike Turquette
Browse files

Merge tag 'tegra-clk-3.18' of git://nv-tegra.nvidia.com/user/pdeschrijver/linux into clk-next

Tegra clk updates for 3.18
parents b52f4914 b9e742c3
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -794,6 +794,7 @@ Greg Kroah-Hartman, "How to piss off a kernel subsystem maintainer".
  <http://www.kroah.com/log/linux/maintainer-03.html>
  <http://www.kroah.com/log/linux/maintainer-03.html>
  <http://www.kroah.com/log/linux/maintainer-04.html>
  <http://www.kroah.com/log/linux/maintainer-04.html>
  <http://www.kroah.com/log/linux/maintainer-05.html>
  <http://www.kroah.com/log/linux/maintainer-05.html>
  <http://www.kroah.com/log/linux/maintainer-06.html>


NO!!!! No more huge patch bombs to linux-kernel@vger.kernel.org people!
NO!!!! No more huge patch bombs to linux-kernel@vger.kernel.org people!
  <https://lkml.org/lkml/2005/7/11/336>
  <https://lkml.org/lkml/2005/7/11/336>
+3 −3
Original line number Original line Diff line number Diff line
@@ -16,9 +16,9 @@ Example:
* DMA client
* DMA client


Required properties:
Required properties:
- dmas:		a list of <[DMA multiplexer phandle] [SRS/DRS value]> pairs,
- dmas:		a list of <[DMA multiplexer phandle] [SRS << 8 | DRS]> pairs.
		where SRS/DRS values are fixed handles, specified in the SoC
		where SRS/DRS are specified in the SoC manual.
		manual as the value that would be written into the PDMACHCR.
		It will be written into PDMACHCR as high 16-bit parts.
- dma-names:	a list of DMA channel names, one per "dmas" entry
- dma-names:	a list of DMA channel names, one per "dmas" entry


Example:
Example:
+11 −0
Original line number Original line Diff line number Diff line
@@ -15,6 +15,17 @@ Optional properties for main touchpad device:
    keycode generated by each GPIO. Linux keycodes are defined in
    keycode generated by each GPIO. Linux keycodes are defined in
    <dt-bindings/input/input.h>.
    <dt-bindings/input/input.h>.


- linux,gpio-keymap: When enabled, the SPT_GPIOPWN_T19 object sends messages
    on GPIO bit changes. An array of up to 8 entries can be provided
    indicating the Linux keycode mapped to each bit of the status byte,
    starting at the LSB. Linux keycodes are defined in
    <dt-bindings/input/input.h>.

    Note: the numbering of the GPIOs and the bit they start at varies between
    maXTouch devices. You must either refer to the documentation, or
    experiment to determine which bit corresponds to which input. Use
    KEY_RESERVED for unused padding values.

Example:
Example:


	touch@4b {
	touch@4b {
+4 −0
Original line number Original line Diff line number Diff line
@@ -39,6 +39,10 @@ Optional properties:
  further clocks may be specified in derived bindings.
  further clocks may be specified in derived bindings.
- clock-names: One name for each entry in the clocks property, the
- clock-names: One name for each entry in the clocks property, the
  first one should be "stmmaceth".
  first one should be "stmmaceth".
- clk_ptp_ref: this is the PTP reference clock; in case of the PTP is
  available this clock is used for programming the Timestamp Addend Register.
  If not passed then the system clock will be used and this is fine on some
  platforms.


Examples:
Examples:


+2 −2
Original line number Original line Diff line number Diff line
@@ -45,8 +45,8 @@ Example:
		infet5-supply = <&some_reg>;
		infet5-supply = <&some_reg>;
		infet6-supply = <&some_reg>;
		infet6-supply = <&some_reg>;
		infet7-supply = <&some_reg>;
		infet7-supply = <&some_reg>;
		vsys_l1-supply = <&some_reg>;
		vsys-l1-supply = <&some_reg>;
		vsys_l2-supply = <&some_reg>;
		vsys-l2-supply = <&some_reg>;


		regulators {
		regulators {
			dcdc1 {
			dcdc1 {
Loading