Re: [U-Boot] [PATCH 07/18] dm: video: Add a uclass for the text console

2016-01-17 Thread Anatolij Gustschin
On Tue, 5 Jan 2016 09:31:03 -0700 Simon Glass wrote: ... > +/** > + * vidconsole_put_char() - Output a character to the current console position > + * > + * Outputs a character to the console and advances the cursor. This function > + * handles wrapping to new lines and scrolling the console. Spe

[U-Boot] [PATCH 07/18] dm: video: Add a uclass for the text console

2016-01-05 Thread Simon Glass
The existing LCD/video interface suffers from conflating the bitmap display with text output on that display. As a result the implementation is more complex than it needs to me. We can support multiple text console drivers. Create a separate uclass to support this, with its own API. Signed-off-by