All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <57111E8B.1040503@opensource.altera.com>

diff --git a/a/1.txt b/N1/1.txt
index c0e7f3a..682357b 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -1,104 +1,130 @@
+
 Hi Lee
 
 On 03/30/2016 06:35 AM, Lee Jones wrote:
-> On Tue, 29 Mar 2016, tthayer@opensource.altera.com wrote:
->
->> From: Thor Thayer <tthayer@opensource.altera.com>
->>
->> The Altera Arria10 Devkit System Resource chip is a Multi-Function
->> Device, it has two subdevices:
->>       - GPIO
->>       - HWMON
->>
->> This patch adds documentation for the Altera A10-SR DT bindings.
->>
->> Signed-off-by: Thor Thayer <tthayer@opensource.altera.com>
->> ---
->>   .../devicetree/bindings/mfd/altera-a10sr.txt       |   35 ++++++++++++++++++++
->>   1 file changed, 35 insertions(+)
->>   create mode 100644 Documentation/devicetree/bindings/mfd/altera-a10sr.txt
->>
->> diff --git a/Documentation/devicetree/bindings/mfd/altera-a10sr.txt b/Documentation/devicetree/bindings/mfd/altera-a10sr.txt
->> new file mode 100644
->> index 0000000..564c761
->> --- /dev/null
->> +++ b/Documentation/devicetree/bindings/mfd/altera-a10sr.txt
->> @@ -0,0 +1,35 @@
->> +* Altera Arria10 Development Kit System Resource Chip
->> +
->> +Required parent device properties:
->> +- compatible : "altr,altr_a10sr"
->> +- spi-max-frequency : Maximum SPI frequency.
->> +- reg : the SPI Chip Select address for the Arria10 System Resource chip
->
-> DT bindings are much easier to read in the following format:
->
-> - compatible		: "altr,altr_a10sr"
-> - spi-max-frequency	: Maximum SPI frequency.
-> - reg			: the SPI Chip Select address for the Arria10 System Resource chip
->
-> ... also, sentences start with an uppercase char.
->
->> +The A10SR consists of this varied group of sub-devices:
->> +
->> +Device                   Description
->> +------                   ----------
->> +altr_a10sr_gpio          GPIO Controller
->> +altr_a10sr_hwmon         Hardware Monitor
->> +
->> +The LEDs are implemented entirely in the device tree using
->> +the gpio-led framework.
->
-> This is a Linuxisum and should not live in DT bindings.
->
->> +Example:
->> +
->> +        a10-sr: a10-sr@0 {
->
-> Nodes should be named after their device 'type'.
->
-> Does this device really start a address 0?
->
+
+On Tue, 29 Mar 2016, ttha...@opensource.altera.com wrote:
+
+
+From: Thor Thayer <ttha...@opensource.altera.com>
+To: linux-hwmon@vger.kernel.org
+
+The Altera Arria10 Devkit System Resource chip is a Multi-Function
+Device, it has two subdevices:
+      - GPIO
+      - HWMON
+
+This patch adds documentation for the Altera A10-SR DT bindings.
+
+Signed-off-by: Thor Thayer <ttha...@opensource.altera.com>
+---
+  .../devicetree/bindings/mfd/altera-a10sr.txt       |   35 ++++++++++++++++++++
+  1 file changed, 35 insertions(+)
+  create mode 100644 Documentation/devicetree/bindings/mfd/altera-a10sr.txt
+
+diff --git a/Documentation/devicetree/bindings/mfd/altera-a10sr.txt 
+b/Documentation/devicetree/bindings/mfd/altera-a10sr.txt
+new file mode 100644
+index 0000000..564c761
+--- /dev/null
++++ b/Documentation/devicetree/bindings/mfd/altera-a10sr.txt
+@@ -0,0 +1,35 @@
++* Altera Arria10 Development Kit System Resource Chip
++
++Required parent device properties:
++- compatible : "altr,altr_a10sr"
++- spi-max-frequency : Maximum SPI frequency.
++- reg : the SPI Chip Select address for the Arria10 System Resource chip
+
+
+DT bindings are much easier to read in the following format:
+
+- compatible            : "altr,altr_a10sr"
+- spi-max-frequency     : Maximum SPI frequency.
+- reg                   : the SPI Chip Select address for the Arria10 System 
+Resource chip
+
+... also, sentences start with an uppercase char.
+
+
++The A10SR consists of this varied group of sub-devices:
++
++Device                   Description
++------                   ----------
++altr_a10sr_gpio          GPIO Controller
++altr_a10sr_hwmon         Hardware Monitor
++
++The LEDs are implemented entirely in the device tree using
++the gpio-led framework.
+
+
+This is a Linuxisum and should not live in DT bindings.
+
+
++Example:
++
++        a10-sr: a10-sr@0 {
+
+
+Nodes should be named after their device 'type'.
+
+Does this device really start a address 0?
+
+
 
 I see in the documentation on device trees there are a number of 
 categories I can use. GPIO is easy because it is one of the categories 
 but I'm not sure about the new device I'm adding since the a10sr is a 
 new device.
 
+
 I believe I should only call out the name and address on the SPI bus like:
 
 a10sr@0 {
 
->> +		compatible = "altr,altr-a10sr";
->> +		reg = <0>;
->> +		spi-max-frequency = <100000>;
->> +
->> +		a10sr_gpio: a10sr_gpio {
->
-> Device type only please.
->
+
++               compatible = "altr,altr-a10sr";
++               reg = <0>;
++               spi-max-frequency = <100000>;
++
++               a10sr_gpio: a10sr_gpio {
+
+
+Device type only please.
+
+
 
 and this would be a10sr_gpio: gpio-controller {
 
 Does that seem correct?
 
->> +			compatible = "altr,a10sr-gpio";
->> +			gpio-controller;
->> +			#gpio-cells = <2>;
->> +			ngpios = <16>;
->> +		};
->> +
->> +		a10sr_hwmon: a10sr_hwmon {
->
-> Device type only please.
->
+
++                       compatible = "altr,a10sr-gpio";
++                       gpio-controller;
++                       #gpio-cells = <2>;
++                       ngpios = <16>;
++               };
++
++               a10sr_hwmon: a10sr_hwmon {
+
+
+Device type only please.
+
 I need to revisit where this will live (hwmon does not seem to be the 
 correct place) so it will change but I can follow the format above if it 
 is correct.
 
+
 Thanks for reviewing.
 
->> +			compatible = "altr,a10sr-hwmon";
->> +		};
->> +	};
->
+
++                       compatible = "altr,a10sr-hwmon";
++               };
++       };
+
+
+
+--
+To unsubscribe from this list: send the line "unsubscribe linux-hwmon" in
+the body of a message to majord...@vger.kernel.org
+More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff --git a/a/content_digest b/N1/content_digest
index 119fb9f..509cf6a 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,127 +1,139 @@
  "ref\01459278791-3646-1-git-send-email-tthayer@opensource.altera.com\0"
- "ref\01459278791-3646-2-git-send-email-tthayer@opensource.altera.com\0"
- "ref\020160330113532.GI3323@x1\0"
  "From\0Thor Thayer <tthayer@opensource.altera.com>\0"
  "Subject\0Re: [RFC 1/8] dt-bindings: mfd: Add Altera Arria10 System Resource Chip bindings\0"
- "Date\0Fri, 15 Apr 2016 12:02:03 -0500\0"
- "To\0Lee Jones <lee.jones@linaro.org>\0"
- "Cc\0linus.walleij@linaro.org"
-  gnurou@gmail.com
-  jdelvare@suse.com
-  linux@roeck-us.net
-  robh+dt@kernel.org
-  pawell.moll@arm.com
-  mark.rutland@arm.com
-  ijc+devicetree@hellion.org.uk
-  dinguyen@opensource.altera.com
-  linux-gpio@vger.kernel.org
-  linux-hwmon@vger.kernel.org
- " devicetree@vger.kernel.org\0"
+ "Date\0Fri, 15 Apr 2016 09:57:40 -0700\0"
+ "To\0linux-hwmon@vger.kernel.org\0"
  "\00:1\0"
  "b\0"
+ "\n"
  "Hi Lee\n"
  "\n"
  "On 03/30/2016 06:35 AM, Lee Jones wrote:\n"
- "> On Tue, 29 Mar 2016, tthayer@opensource.altera.com wrote:\n"
- ">\n"
- ">> From: Thor Thayer <tthayer@opensource.altera.com>\n"
- ">>\n"
- ">> The Altera Arria10 Devkit System Resource chip is a Multi-Function\n"
- ">> Device, it has two subdevices:\n"
- ">>       - GPIO\n"
- ">>       - HWMON\n"
- ">>\n"
- ">> This patch adds documentation for the Altera A10-SR DT bindings.\n"
- ">>\n"
- ">> Signed-off-by: Thor Thayer <tthayer@opensource.altera.com>\n"
- ">> ---\n"
- ">>   .../devicetree/bindings/mfd/altera-a10sr.txt       |   35 ++++++++++++++++++++\n"
- ">>   1 file changed, 35 insertions(+)\n"
- ">>   create mode 100644 Documentation/devicetree/bindings/mfd/altera-a10sr.txt\n"
- ">>\n"
- ">> diff --git a/Documentation/devicetree/bindings/mfd/altera-a10sr.txt b/Documentation/devicetree/bindings/mfd/altera-a10sr.txt\n"
- ">> new file mode 100644\n"
- ">> index 0000000..564c761\n"
- ">> --- /dev/null\n"
- ">> +++ b/Documentation/devicetree/bindings/mfd/altera-a10sr.txt\n"
- ">> @@ -0,0 +1,35 @@\n"
- ">> +* Altera Arria10 Development Kit System Resource Chip\n"
- ">> +\n"
- ">> +Required parent device properties:\n"
- ">> +- compatible : \"altr,altr_a10sr\"\n"
- ">> +- spi-max-frequency : Maximum SPI frequency.\n"
- ">> +- reg : the SPI Chip Select address for the Arria10 System Resource chip\n"
- ">\n"
- "> DT bindings are much easier to read in the following format:\n"
- ">\n"
- "> - compatible\t\t: \"altr,altr_a10sr\"\n"
- "> - spi-max-frequency\t: Maximum SPI frequency.\n"
- "> - reg\t\t\t: the SPI Chip Select address for the Arria10 System Resource chip\n"
- ">\n"
- "> ... also, sentences start with an uppercase char.\n"
- ">\n"
- ">> +The A10SR consists of this varied group of sub-devices:\n"
- ">> +\n"
- ">> +Device                   Description\n"
- ">> +------                   ----------\n"
- ">> +altr_a10sr_gpio          GPIO Controller\n"
- ">> +altr_a10sr_hwmon         Hardware Monitor\n"
- ">> +\n"
- ">> +The LEDs are implemented entirely in the device tree using\n"
- ">> +the gpio-led framework.\n"
- ">\n"
- "> This is a Linuxisum and should not live in DT bindings.\n"
- ">\n"
- ">> +Example:\n"
- ">> +\n"
- ">> +        a10-sr: a10-sr@0 {\n"
- ">\n"
- "> Nodes should be named after their device 'type'.\n"
- ">\n"
- "> Does this device really start a address 0?\n"
- ">\n"
+ "\n"
+ "On Tue, 29 Mar 2016, ttha...@opensource.altera.com wrote:\n"
+ "\n"
+ "\n"
+ "From: Thor Thayer <ttha...@opensource.altera.com>\n"
+ "To: linux-hwmon@vger.kernel.org\n"
+ "\n"
+ "The Altera Arria10 Devkit System Resource chip is a Multi-Function\n"
+ "Device, it has two subdevices:\n"
+ "      - GPIO\n"
+ "      - HWMON\n"
+ "\n"
+ "This patch adds documentation for the Altera A10-SR DT bindings.\n"
+ "\n"
+ "Signed-off-by: Thor Thayer <ttha...@opensource.altera.com>\n"
+ "---\n"
+ "  .../devicetree/bindings/mfd/altera-a10sr.txt       |   35 ++++++++++++++++++++\n"
+ "  1 file changed, 35 insertions(+)\n"
+ "  create mode 100644 Documentation/devicetree/bindings/mfd/altera-a10sr.txt\n"
+ "\n"
+ "diff --git a/Documentation/devicetree/bindings/mfd/altera-a10sr.txt \n"
+ "b/Documentation/devicetree/bindings/mfd/altera-a10sr.txt\n"
+ "new file mode 100644\n"
+ "index 0000000..564c761\n"
+ "--- /dev/null\n"
+ "+++ b/Documentation/devicetree/bindings/mfd/altera-a10sr.txt\n"
+ "@@ -0,0 +1,35 @@\n"
+ "+* Altera Arria10 Development Kit System Resource Chip\n"
+ "+\n"
+ "+Required parent device properties:\n"
+ "+- compatible : \"altr,altr_a10sr\"\n"
+ "+- spi-max-frequency : Maximum SPI frequency.\n"
+ "+- reg : the SPI Chip Select address for the Arria10 System Resource chip\n"
+ "\n"
+ "\n"
+ "DT bindings are much easier to read in the following format:\n"
+ "\n"
+ "- compatible            : \"altr,altr_a10sr\"\n"
+ "- spi-max-frequency     : Maximum SPI frequency.\n"
+ "- reg                   : the SPI Chip Select address for the Arria10 System \n"
+ "Resource chip\n"
+ "\n"
+ "... also, sentences start with an uppercase char.\n"
+ "\n"
+ "\n"
+ "+The A10SR consists of this varied group of sub-devices:\n"
+ "+\n"
+ "+Device                   Description\n"
+ "+------                   ----------\n"
+ "+altr_a10sr_gpio          GPIO Controller\n"
+ "+altr_a10sr_hwmon         Hardware Monitor\n"
+ "+\n"
+ "+The LEDs are implemented entirely in the device tree using\n"
+ "+the gpio-led framework.\n"
+ "\n"
+ "\n"
+ "This is a Linuxisum and should not live in DT bindings.\n"
+ "\n"
+ "\n"
+ "+Example:\n"
+ "+\n"
+ "+        a10-sr: a10-sr@0 {\n"
+ "\n"
+ "\n"
+ "Nodes should be named after their device 'type'.\n"
+ "\n"
+ "Does this device really start a address 0?\n"
+ "\n"
+ "\n"
  "\n"
  "I see in the documentation on device trees there are a number of \n"
  "categories I can use. GPIO is easy because it is one of the categories \n"
  "but I'm not sure about the new device I'm adding since the a10sr is a \n"
  "new device.\n"
  "\n"
+ "\n"
  "I believe I should only call out the name and address on the SPI bus like:\n"
  "\n"
  "a10sr@0 {\n"
  "\n"
- ">> +\t\tcompatible = \"altr,altr-a10sr\";\n"
- ">> +\t\treg = <0>;\n"
- ">> +\t\tspi-max-frequency = <100000>;\n"
- ">> +\n"
- ">> +\t\ta10sr_gpio: a10sr_gpio {\n"
- ">\n"
- "> Device type only please.\n"
- ">\n"
+ "\n"
+ "+               compatible = \"altr,altr-a10sr\";\n"
+ "+               reg = <0>;\n"
+ "+               spi-max-frequency = <100000>;\n"
+ "+\n"
+ "+               a10sr_gpio: a10sr_gpio {\n"
+ "\n"
+ "\n"
+ "Device type only please.\n"
+ "\n"
+ "\n"
  "\n"
  "and this would be a10sr_gpio: gpio-controller {\n"
  "\n"
  "Does that seem correct?\n"
  "\n"
- ">> +\t\t\tcompatible = \"altr,a10sr-gpio\";\n"
- ">> +\t\t\tgpio-controller;\n"
- ">> +\t\t\t#gpio-cells = <2>;\n"
- ">> +\t\t\tngpios = <16>;\n"
- ">> +\t\t};\n"
- ">> +\n"
- ">> +\t\ta10sr_hwmon: a10sr_hwmon {\n"
- ">\n"
- "> Device type only please.\n"
- ">\n"
+ "\n"
+ "+                       compatible = \"altr,a10sr-gpio\";\n"
+ "+                       gpio-controller;\n"
+ "+                       #gpio-cells = <2>;\n"
+ "+                       ngpios = <16>;\n"
+ "+               };\n"
+ "+\n"
+ "+               a10sr_hwmon: a10sr_hwmon {\n"
+ "\n"
+ "\n"
+ "Device type only please.\n"
+ "\n"
  "I need to revisit where this will live (hwmon does not seem to be the \n"
  "correct place) so it will change but I can follow the format above if it \n"
  "is correct.\n"
  "\n"
+ "\n"
  "Thanks for reviewing.\n"
  "\n"
- ">> +\t\t\tcompatible = \"altr,a10sr-hwmon\";\n"
- ">> +\t\t};\n"
- ">> +\t};\n"
- >
+ "\n"
+ "+                       compatible = \"altr,a10sr-hwmon\";\n"
+ "+               };\n"
+ "+       };\n"
+ "\n"
+ "\n"
+ "\n"
+ "--\n"
+ "To unsubscribe from this list: send the line \"unsubscribe linux-hwmon\" in\n"
+ "the body of a message to majord...@vger.kernel.org\n"
+ More majordomo info at  http://vger.kernel.org/majordomo-info.html
 
-3ace6ebd7c3f3b5ba82654a80669f60bce4ce86ae849f5c6a4eb200b07476bfa
+afd047e67c46cc1f74026df7a09036a0306577fd37a90b14d1f66819d0893d9d

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.