Re: [PATCH v1 3/4] drm/ls2kbmc: Add support for Loongson-2K BMC display

2025-01-09 Thread Binbin Zhou
Hi Thomas: Sorry for the late reply. On Mon, Jan 6, 2025 at 10:10 PM Thomas Zimmermann wrote: > > Hi, > > Thanks for the info. > > > Am 06.01.25 um 08:03 schrieb Binbin Zhou: > [...] > >> Could you point to the exact call that fails within simpledrm? >

Re: [PATCH v1 3/4] drm/ls2kbmc: Add support for Loongson-2K BMC display

2025-01-05 Thread Binbin Zhou
Hi Thomas: The last reply email was incomplete, sorry for the incomplete reply due to my mistake. On Thu, Jan 2, 2025 at 9:32 PM Thomas Zimmermann wrote: > > Hi > > > Am 02.01.25 um 13:55 schrieb Binbin Zhou: > > Hi Thomas: > > > > Thanks for your reply. >

Re: [PATCH v1 3/4] drm/ls2kbmc: Add support for Loongson-2K BMC display

2025-01-05 Thread Binbin Zhou
Hi Thomas: On Thu, Jan 2, 2025 at 9:32 PM Thomas Zimmermann wrote: > > Hi > > > Am 02.01.25 um 13:55 schrieb Binbin Zhou: > > Hi Thomas: > > > > Thanks for your reply. > > > > On Thu, Jan 2, 2025 at 5:07 PM Thomas Zimmermann > > wrote:

Re: [PATCH v1 3/4] drm/ls2kbmc: Add support for Loongson-2K BMC display

2025-01-02 Thread Binbin Zhou
Hi Thomas: Thanks for your reply. On Thu, Jan 2, 2025 at 5:07 PM Thomas Zimmermann wrote: > > Hi > > > Am 30.12.24 um 10:31 schrieb Binbin Zhou: > [...] > > + > > +static struct platform_driver ls2kbmc_platform_driver = { > > + .driver = { > >

[PATCH v1 0/4] LoongArch: Add Loongson-2K0500 BMC support

2024-12-31 Thread Binbin Zhou
present it in four patches: patch-1: BMC device PCI resource allocation. patch-2: IPMI implementation patch-3: display, based on simpledrm patch-4: BMC reboot support Thanks. Binbin Zhou (4): mfd: ls2kbmc: Introduce Loongson-2K BMC MFD Core driver ipmi: Add Loongson-2K BMC support drm/ls2kbmc

[PATCH v1 4/4] drm/ls2kbmc: Add Loongson-2K BMC reset function support

2024-12-31 Thread Binbin Zhou
to the monitor at the end. Co-developed-by: Chong Qiao Signed-off-by: Chong Qiao Signed-off-by: Binbin Zhou --- drivers/gpu/drm/tiny/ls2kbmc.c | 284 - 1 file changed, 283 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/tiny/ls2kbmc.c b/drivers/gpu/drm

[PATCH v1 2/4] ipmi: Add Loongson-2K BMC support

2024-12-31 Thread Binbin Zhou
. Therefore I made the whole IPMI driver independent. Co-developed-by: Chong Qiao Signed-off-by: Chong Qiao Signed-off-by: Binbin Zhou --- drivers/char/ipmi/Makefile | 1 + drivers/char/ipmi/ipmi_si.h | 8 + drivers/char/ipmi/ipmi_si_intf.c | 3 + drivers/char/ipmi/ipmi_si_ls2k.c

[PATCH v1 3/4] drm/ls2kbmc: Add support for Loongson-2K BMC display

2024-12-31 Thread Binbin Zhou
Adds a driver for the Loongson-2K BMC display as a sub-function of the BMC device. Display-related scan output buffers, sizes, and display formats are provided through the Loongson-2K BMC MFD driver. Co-developed-by: Chong Qiao Signed-off-by: Chong Qiao Signed-off-by: Binbin Zhou --- drivers

[PATCH v1 1/4] mfd: ls2kbmc: Introduce Loongson-2K BMC MFD Core driver

2024-12-31 Thread Binbin Zhou
Signed-off-by: Chong Qiao Signed-off-by: Binbin Zhou --- drivers/mfd/Kconfig | 15 drivers/mfd/Makefile | 2 + drivers/mfd/ls2kbmc-mfd.c | 145 ++ 3 files changed, 162 insertions(+) create mode 100644 drivers/mfd/ls2kbmc-mfd.c diff --git a