Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1647643
| From | Nikita Yushchenko <nikita.yoush@cogentembedded.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [V2, 2/6] tty: serial: lpuart: add little endian 32 bit register support |
| Date | 2017-05-23 07:30 +0200 |
| Message-ID | <tKaym-7e0-9@gated-at.bofh.it> (permalink) |
| References | (4 earlier) <tI0jL-7Ri-7@gated-at.bofh.it> <tI0D7-7Xj-3@gated-at.bofh.it> <tI1fP-8p3-15@gated-at.bofh.it> <tI2bU-xt-13@gated-at.bofh.it> <tIRHs-3XA-19@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Hi,
>>>> Alternative solution could be - have separate write path for earlycon.
>>>
>>> It looks to me having the same issue with a separate write patch
>>> for earlycon as we still need distinguish Little or Big endian
>>> for Layerscape and IMX.
>>>
>>>> At a glance, it is dozen lines of code.
>>>
>>> Would you please show some sample code?
>>
>> Do not reuse lpuart32_console_putchar() in earlycon code.
>>
>> Have two sets of early_setup/early_write/putchar - for BE and
>> defaut-endian earlycon. And in these putchar's do not use
>> lpuart_(read|write).
>>
>
> Isn't that introducing another consistency break after fix one
> consistency break?
>
> If doing that, we then have two register read/write APIs.
> One for normal driver operation by dynamically checking lpuart_is_be
> property to distinguish the endian difference problem.
> Another is specifically implemented for only early console read/write
> and use hardcoded way to read/write register directly instead of using
> the standard API lpuart32_read/write, like follows:
> e.g.
> lpuart32_le_console_write() {
> writel();
> }
>
> lpuart32_be_console_write() {
> iowrite32be()
> }
> This also makes the driver a bit strange and ugly.
>
> It looks to me both way are trade offs and the later one seems sacrifice
> more. And i doubt if it's really necessary for probably a no real gain
> purpose as the FPGA you mentioned is a theoretical case and less
> possibility to exist.
>
> I'm still wondering how about keep using the exist way and adding more
> information in code to explain why use a global var?
I've checked other driver under drivers/tty/serial/, for examples of
similar cases.
Please look at serial8250_early_in() / serial8250_early_out() ?
These do handle different endian, via port->iotype
Another example is drivers/tty/serial/samsung.c, where
port->private_data is initialized and used.
Nikita
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
Re: [V2, 2/6] tty: serial: lpuart: add little endian 32 bit register support Nikita Yushchenko <nikita.yoush@cogentembedded.com> - 2017-05-16 13:10 +0200
Re: [V2, 2/6] tty: serial: lpuart: add little endian 32 bit register support Dong Aisheng <dongas86@gmail.com> - 2017-05-17 05:40 +0200
Re: [V2, 2/6] tty: serial: lpuart: add little endian 32 bit register support Nikita Yushchenko <nikita.yoush@cogentembedded.com> - 2017-05-17 07:50 +0200
RE: [V2, 2/6] tty: serial: lpuart: add little endian 32 bit register support "A.S. Dong" <aisheng.dong@nxp.com> - 2017-05-17 08:10 +0200
Re: [V2, 2/6] tty: serial: lpuart: add little endian 32 bit register support Nikita Yushchenko <nikita.yoush@cogentembedded.com> - 2017-05-17 08:30 +0200
Re: [V2, 2/6] tty: serial: lpuart: add little endian 32 bit register support Dong Aisheng <dongas86@gmail.com> - 2017-05-17 09:10 +0200
Re: [V2, 2/6] tty: serial: lpuart: add little endian 32 bit register support Nikita Yushchenko <nikita.yoush@cogentembedded.com> - 2017-05-17 10:10 +0200
Re: [V2, 2/6] tty: serial: lpuart: add little endian 32 bit register support Dong Aisheng <dongas86@gmail.com> - 2017-05-19 17:10 +0200
Re: [V2, 2/6] tty: serial: lpuart: add little endian 32 bit register support Nikita Yushchenko <nikita.yoush@cogentembedded.com> - 2017-05-23 07:30 +0200
csiph-web