On 9. 10. 25. 13:15, Yao Zi wrote: > CAUTION: This email originated from outside of the organization. Do not click > links or open attachments unless you recognize the sender and know the > content is safe. > > > On Tue, Aug 19, 2025 at 10:34:01AM +0000, Uros Stajic wrote: >> From: Chao-ying Fu <[email protected]> >> >> Add basic support for the 8-char LED display on P8700-based Boston >> Board using display_set() and display_putc(), enabling the generic >> 'display' command with clear and home support. > > I noticed the similar "display" command has been removed back to 2019 > in commit 005a804d0f3 (cmd: remove unused `display` command, > 2019-05-21). > > To me, It doesn't seem a good idea to add it back, at least more > discussion is necessary for it. > > Could the driver be implemented as a stdio device instead? And could it > be described in devicetree to avoid non-DM code as much as possible? > > Regards, > Yao Zi > >> Signed-off-by: Chao-ying Fu <[email protected]> >> Signed-off-by: Uros Stajic <[email protected]> >> --- >> board/mips/boston-riscv/Kconfig | 4 ++ >> board/mips/boston-riscv/MAINTAINERS | 3 ++ >> board/mips/boston-riscv/Makefile | 1 + >> board/mips/boston-riscv/display.c | 33 ++++++++++++++++ >> board/mips/boston-riscv/lowlevel_init.S | 2 + >> cmd/Kconfig | 8 ++++ >> cmd/Makefile | 1 + >> cmd/display.c | 51 +++++++++++++++++++++++++ >> doc/README.LED_display | 26 +++++++++++++ >> include/led-display.h | 33 ++++++++++++++++ >> 10 files changed, 162 insertions(+) >> create mode 100644 board/mips/boston-riscv/display.c >> create mode 100644 cmd/display.c >> create mode 100644 doc/README.LED_display >> create mode 100644 include/led-display.h
Hi Yao Zi, Thank you for the feedback! We agree that reintroducing the display command is not appropriate. This has been addressed in v5, the display command changes were dropped. Best regards, Uros

