Re: [PATCH v4 1/3] serial: sh-sci: Add OF support
From: Arnd Bergmann <arnd@arndb.de>
Date: 2013-03-05 19:26:25
Also in:
linux-arm-kernel, linux-sh
On Tuesday 05 March 2013, Bastian Hecht wrote:
2013/3/4 Arnd Bergmann [off-list ref]:quoted
On Monday 04 March 2013 17:20:52 Bastian Hecht wrote:quoted
+- reg : Address and length of the register set for the device +- interrupts : Should contain the following IRQs: ERI, RXI, TXI and BRI.You probably want to require the "interrupt-names" property as well then.I added the interrupt-names property but still enforce the ordering in the binding specs.
Yes, that is the correct approach.
Don't know if we want the extra overhead to scan for strings or just take a certain order for granted. If we want to change it to parsing, it would be better to switch completely to platform_get_irq_byname() and change all the current platform code, else we will produce code overhead.
Right, there is no need to change the code for that, but I think it makes sense to do the binding the way you describe, in case someone later wants to move to platform_get_irq_byname. A lot of people prefer that for some reason, although I think the traditional numbering is just as good.
quoted
quoted
+- renesas,scbrr-algo-id : Algorithm ID for the Bit Rate Register + 1 = SCBRR_ALGO_1 ((clk + 16 * bps) / (16 * bps) - 1) + 2 = SCBRR_ALGO_2 ((clk + 16 * bps) / (32 * bps) - 1) + 3 = SCBRR_ALGO_3 (((clk * 2) + 16 * bps) / (16 * bps) - 1) + 4 = SCBRR_ALGO_4 (((clk * 2) + 16 * bps) / (32 * bps) - 1) + 5 = SCBRR_ALGO_5 (((clk * 1000 / 32) / bps) - 1)Maybe replace this with a "clock-frequency" property? This may be what the registers contain, but it is not very readable.Hmm... do you want a frequency in absolute terms? And then calculate the best SCBRR value for it? I'm unsure about this, either you must exactly hit it or accept tolerances? As something in between I renamed the property to "renesas,clock-algorithm", but I don't know if this is what you want.
I meant the absolute frequency in HZ, since that is what we do for the 8250 uart and other devices, but only if that is sufficient for your device. Arnd