On Fri, Jan 16, 2015 at 06:33:04PM +0000, Andre Przywara wrote: > Hi Mark, > > On 16/01/15 18:12, Mark Rutland wrote: > > On Fri, Jan 16, 2015 at 06:07:42PM +0000, Andre Przywara wrote: > >> Hi Mark, > >> > >> On 16/01/15 17:34, Mark Rutland wrote: > >>> On Fri, Jan 16, 2015 at 05:23:06PM +0000, Andre Przywara wrote: > >>>> The ARM Server Base System Architecture[1] document describes a > >>>> generic UART which is a subset of the PL011 UART. > >>>> It lacks DMA support, baud rate control and modem status line > >>>> control, among other things. > >>>> The idea is to move the UART initialization and setup into the > >>>> firmware (which does this job today already) and let the kernel just > >>>> use the UART for sending and receiving characters. > >>>> We use the recent refactoring the build a new struct uart_ops > >>>> variable which points to some new functions avoiding access to the > >>>> missing registers. We reuse as much existing PL011 code as possible. > >>>> > >>>> In contrast to the PL011 the SBSA UART does not define any AMBA or > >>>> PrimeCell relations, so we go a pretty generic probe function > >>>> which only uses platform device functions. > >>>> A DT binding is provided, but other systems can easily attach to it, > >>>> too (hint, hint!). > >>>> > >>>> Signed-off-by: Andre Przywara <andre.przywara@xxxxxxx> > >>>> --- > >>>> .../devicetree/bindings/serial/arm_sbsa_uart.txt | 9 ++ > >>>> drivers/tty/serial/amba-pl011.c | 154 ++++++++++++++++++++ > >>>> 2 files changed, 163 insertions(+) > >>>> create mode 100644 Documentation/devicetree/bindings/serial/arm_sbsa_uart.txt > >>>> > >>>> diff --git a/Documentation/devicetree/bindings/serial/arm_sbsa_uart.txt b/Documentation/devicetree/bindings/serial/arm_sbsa_uart.txt > >>>> new file mode 100644 > >>>> index 0000000..21d211f > >>>> --- /dev/null > >>>> +++ b/Documentation/devicetree/bindings/serial/arm_sbsa_uart.txt > >>>> @@ -0,0 +1,9 @@ > >>>> +* ARM SBSA defined generic UART > >>>> +This UART uses a subset of the PL011 registers and consequently lives > >>>> +in the PL011 driver. It's baudrate and other communication parameters > >>>> +cannot be adjusted at runtime, so it lacks a clock specifier here. > >>>> + > >>>> +Required properties: > >>>> +- compatible: must be "arm,sbsa-uart" > >>>> +- reg: exactly one register range > >>>> +- interrupts: exactly one interrupt specifier > >>>> diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c > >>>> index a1c929f..596e641 100644 > >>>> --- a/drivers/tty/serial/amba-pl011.c > >>>> +++ b/drivers/tty/serial/amba-pl011.c > >>>> @@ -101,6 +101,14 @@ static struct vendor_data vendor_arm = { > >>>> .get_fifosize = get_fifosize_arm, > >>>> }; > >>>> > >>>> +static struct vendor_data vendor_sbsa = { > >>>> + .oversampling = false, > >>>> + .dma_threshold = false, > >>>> + .cts_event_workaround = false, > >>>> + .always_enabled = true, > >>>> + .fixed_options = "115200n8", > >>>> +}; > >>> > >>> Is this configuration mandated by the SBSA? If so, please mandate it in > >>> the binding document. > >> > >> No, actually it is just a placeholder. The driver needs some values to > >> avoid querying the device and to make the upper levels happy, so I went > >> with those. Actually 38400 would make more sense here, since that is > >> some kind of Linux serial default value. > > > > Please let's have the real values rather than something made up. > > > > If I ask my UART how it's configured, I expect it to tell me the truth. > > It's nice to know before I connect something to the other end of the > > line. > > So you mean that the firmware (or the vendor) inserts the actual values > here, which the kernel and eventually userland can read? Precisely. > Makes some sense, so what about: > ----------------------- > Required properties: > - compatible: must be "arm,sbsa-uart" > - reg: exactly one register range > - interrupts: exactly one interrupt specifier > > Optional properties: > - current-speed : the current active speed of the UART > - fifo-size : always 32 as per the SBSA specification > - word-size : the number of payload bits per word > - parity : used parity method, can be: > "n": no parity > "e": even parity > "o": odd parity > "m": always mark (logical 1) > "s": always space (logical 0) > - stop-bits : the number of stop bits after the payload Generally those look fine, though someone more familiar with serial should take a look. We can drop fifo-size given it's fixed. Anything that we know outright doesn't need to be described. We might want to make them mandatory. I don't see any value in not knowing. Thanks, Mark. > > The vendor or the firmware should set these values to match the actual > configuration of the UART. The SBSA spec does not provide ways of > changing those values. > ---------------------------- > While I copied the first two of the optional properties from > of-serial.txt, I made up the rest. Does they make sense? > > Cheers, > Andre. > > >>> If the rate and so on are not mandated, they should probably be > >>> described by the binding so software has a chance of getting the real > >>> configuration details. > >> > >> What the actual settings are is actually totally up to the firmware. By > >> definition software cannot learn these settings and it shouldn't care, > >> as the SBSA UART is just "meant to work(TM)". Though from userland it > >> looks like one can change the baudrate and the other parameters, the > >> driver totally ignores those settings (though it reflects it back). > > > > The fact that we cannot reconfigure it is orthogonal. > > > > Given that all we should need is baud-rate, parity, and bits, it should > > be relatively easy to describe and handle. > > > > Mark. > > -- To unsubscribe from this list: send the line "unsubscribe linux-serial" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html