Re: [PATCH] Add QE device tree definition
From: Kumar Gala <hidden>
Date: 2006-06-30 05:09:54
On Jun 29, 2006, at 11:52 PM, Li Yang-r58472 wrote:
quoted
-----Original Message----- From: Kumar Gala [mailto:galak@kernel.crashing.org] Sent: Friday, June 30, 2006 12:11 PM To: Li Yang-r58472 Cc: linuxppc-dev@ozlabs.org Subject: Re: [PATCH] Add QE device tree definition [snip]quoted
quoted
quoted
+ 2) SPI (Serial Peripheral Interface) + + Required properties: + - device_type : should be "spi". + - compatible : should be "fsl_spi". + - mode : the spi operation mode, it can be "cpu" or "qe".What does it mean for the spi to be in "qe" mode?That means: The SPI can operate in QE mode or in CPU mode. In QE mode SPI is compatible to the MPC826x SPI, and is controlled by QE RISC. In CPU mode, the SPI is controlled wholly by the CPU without any QE RISC intervention.In QE mode does software get involved at all?Yes, of course. The driver needs to do initialization, and deal with the BDs.
So what exactly does the QE do in this mode?
quoted
quoted
quoted
quoted
+ - reg : offset to the register set and its length. + - interrupts : <a b> where a is the interrupt number and b is a + field that represents an encoding of the sense and level + information for the interrupt. This should be encoded based on + the information in section 2) depending on the type of interrupt + controller you have. + - interrupt-parent : the phandle for the interrupt controller that + services interrupts for this device. + + Example: + spi@4c0 { + device_type = "spi"; + compatible = "fsl_spi"; + reg = <4c0 40>; + interrupts = <82 0>; + interrupt-parent = <700>; + mode = "cpu"; + }; +[snip]quoted
quoted
quoted
+ 5) Parallel I/O Ports + + This node configures Parallel I/O ports for CPUs with QE support. + The node should reside in the "soc" node of the tree. For each + device that using parallel I/O ports, a child node should be created. + See the definition of the Pin configuration nodes below for more + information. + + Required properties: + - device_type : should be "par_io". + - reg : offset to the register set and its length. + + Example: + par_io@1400 { + reg = <1400 100>; + #address-cells = <1>; + #size-cells = <0>; + device_type = "par_io"; + ucc_pin@01 { + ...... + }; +Can you explain this further, I'm not getting the relationship between a par_io & ucc_pin. An example maybe helpful.Each QE device needs to configure Parallel I/O Ports pin configuration in order to work, for example the configuration for ucc1 is ucc_pin@01. par_io is a container for all these configurations and gives the base for parallel io port register. I will paste dts file for 8360 to give an example.Maybe its the name that's confusing me, ucc_pin@01 describes what exactly? A single pin? or all the pin configs for ucc 1?All pin configs to ucc1. Could you suggest a more proper name?
Let me think on this now that I understand what's going on. - k