Message ID | 20230505124337.854845-4-jfalempe@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | drm/mgag200: Use DMA to copy the framebuffer to the VRAM | expand |
Hi Jocelyn, kernel test robot noticed the following build warnings: [auto build test WARNING on 457391b0380335d5e9a5babdec90ac53928b23b4] url: https://github.com/intel-lab-lkp/linux/commits/Jocelyn-Falempe/drm-mgag200-Rename-constant-MGAREG_Status-to-MGAREG_STATUS/20230505-204705 base: 457391b0380335d5e9a5babdec90ac53928b23b4 patch link: https://lore.kernel.org/r/20230505124337.854845-4-jfalempe%40redhat.com patch subject: [PATCH 3/4] drm/mgag200: Add IRQ support config: s390-allyesconfig (https://download.01.org/0day-ci/archive/20230505/202305052227.4o72gpi8-lkp@intel.com/config) compiler: s390-linux-gcc (GCC) 12.1.0 reproduce (this is a W=1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # https://github.com/intel-lab-lkp/linux/commit/cbbd69ea02ffdcee64621b76bf22cb360d943294 git remote add linux-review https://github.com/intel-lab-lkp/linux git fetch --no-tags linux-review Jocelyn-Falempe/drm-mgag200-Rename-constant-MGAREG_Status-to-MGAREG_STATUS/20230505-204705 git checkout cbbd69ea02ffdcee64621b76bf22cb360d943294 # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=s390 olddefconfig COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=s390 SHELL=/bin/bash drivers/gpu/drm/mgag200/ If you fix the issue, kindly add following tag where applicable | Reported-by: kernel test robot <lkp@intel.com> | Link: https://lore.kernel.org/oe-kbuild-all/202305052227.4o72gpi8-lkp@intel.com/ All warnings (new ones prefixed by >>): >> drivers/gpu/drm/mgag200/mgag200_drv.c:113:13: warning: no previous prototype for 'mgag200_driver_irq_handler' [-Wmissing-prototypes] 113 | irqreturn_t mgag200_driver_irq_handler(int irq, void *arg) | ^~~~~~~~~~~~~~~~~~~~~~~~~~ >> drivers/gpu/drm/mgag200/mgag200_drv.c:129:6: warning: no previous prototype for 'mgag200_init_irq' [-Wmissing-prototypes] 129 | void mgag200_init_irq(struct mga_device *mdev) | ^~~~~~~~~~~~~~~~ >> drivers/gpu/drm/mgag200/mgag200_drv.c:137:6: warning: no previous prototype for 'mgag200_enable_irq' [-Wmissing-prototypes] 137 | void mgag200_enable_irq(struct mga_device *mdev) | ^~~~~~~~~~~~~~~~~~ vim +/mgag200_driver_irq_handler +113 drivers/gpu/drm/mgag200/mgag200_drv.c 112 > 113 irqreturn_t mgag200_driver_irq_handler(int irq, void *arg) 114 { 115 struct mga_device *mdev = (struct mga_device *) arg; 116 u32 status; 117 118 status = RREG32(MGAREG_STATUS); 119 120 if (status & MGAIRQ_SOFTRAP) { 121 WREG32(MGAREG_ICLEAR, MGAIRQ_SOFTRAP); 122 mdev->dma_in_use = 0; 123 wake_up(&mdev->waitq); 124 return IRQ_HANDLED; 125 } 126 return IRQ_NONE; 127 } 128 > 129 void mgag200_init_irq(struct mga_device *mdev) 130 { 131 /* Disable *all* interrupts */ 132 WREG32(MGAREG_IEN, 0); 133 /* Clear bits if they're already high */ 134 WREG32(MGAREG_ICLEAR, 0xf); 135 } 136 > 137 void mgag200_enable_irq(struct mga_device *mdev) 138 { 139 /* Enable only Softrap IRQ */ 140 WREG32(MGAREG_IEN, MGAIRQ_SOFTRAP); 141 } 142
Hi Jocelyn, kernel test robot noticed the following build warnings: [auto build test WARNING on 457391b0380335d5e9a5babdec90ac53928b23b4] url: https://github.com/intel-lab-lkp/linux/commits/Jocelyn-Falempe/drm-mgag200-Rename-constant-MGAREG_Status-to-MGAREG_STATUS/20230505-204705 base: 457391b0380335d5e9a5babdec90ac53928b23b4 patch link: https://lore.kernel.org/r/20230505124337.854845-4-jfalempe%40redhat.com patch subject: [PATCH 3/4] drm/mgag200: Add IRQ support config: i386-randconfig-a013-20230501 (https://download.01.org/0day-ci/archive/20230505/202305052227.GGoicr9j-lkp@intel.com/config) compiler: clang version 14.0.6 (https://github.com/llvm/llvm-project f28c006a5895fc0e329fe15fead81e37457cb1d1) reproduce (this is a W=1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # https://github.com/intel-lab-lkp/linux/commit/cbbd69ea02ffdcee64621b76bf22cb360d943294 git remote add linux-review https://github.com/intel-lab-lkp/linux git fetch --no-tags linux-review Jocelyn-Falempe/drm-mgag200-Rename-constant-MGAREG_Status-to-MGAREG_STATUS/20230505-204705 git checkout cbbd69ea02ffdcee64621b76bf22cb360d943294 # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 olddefconfig COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 SHELL=/bin/bash drivers/gpu/drm/mgag200/ If you fix the issue, kindly add following tag where applicable | Reported-by: kernel test robot <lkp@intel.com> | Link: https://lore.kernel.org/oe-kbuild-all/202305052227.GGoicr9j-lkp@intel.com/ All warnings (new ones prefixed by >>): >> drivers/gpu/drm/mgag200/mgag200_drv.c:113:13: warning: no previous prototype for function 'mgag200_driver_irq_handler' [-Wmissing-prototypes] irqreturn_t mgag200_driver_irq_handler(int irq, void *arg) ^ drivers/gpu/drm/mgag200/mgag200_drv.c:113:1: note: declare 'static' if the function is not intended to be used outside of this translation unit irqreturn_t mgag200_driver_irq_handler(int irq, void *arg) ^ static >> drivers/gpu/drm/mgag200/mgag200_drv.c:129:6: warning: no previous prototype for function 'mgag200_init_irq' [-Wmissing-prototypes] void mgag200_init_irq(struct mga_device *mdev) ^ drivers/gpu/drm/mgag200/mgag200_drv.c:129:1: note: declare 'static' if the function is not intended to be used outside of this translation unit void mgag200_init_irq(struct mga_device *mdev) ^ static >> drivers/gpu/drm/mgag200/mgag200_drv.c:137:6: warning: no previous prototype for function 'mgag200_enable_irq' [-Wmissing-prototypes] void mgag200_enable_irq(struct mga_device *mdev) ^ drivers/gpu/drm/mgag200/mgag200_drv.c:137:1: note: declare 'static' if the function is not intended to be used outside of this translation unit void mgag200_enable_irq(struct mga_device *mdev) ^ static 3 warnings generated. vim +/mgag200_driver_irq_handler +113 drivers/gpu/drm/mgag200/mgag200_drv.c 112 > 113 irqreturn_t mgag200_driver_irq_handler(int irq, void *arg) 114 { 115 struct mga_device *mdev = (struct mga_device *) arg; 116 u32 status; 117 118 status = RREG32(MGAREG_STATUS); 119 120 if (status & MGAIRQ_SOFTRAP) { 121 WREG32(MGAREG_ICLEAR, MGAIRQ_SOFTRAP); 122 mdev->dma_in_use = 0; 123 wake_up(&mdev->waitq); 124 return IRQ_HANDLED; 125 } 126 return IRQ_NONE; 127 } 128 > 129 void mgag200_init_irq(struct mga_device *mdev) 130 { 131 /* Disable *all* interrupts */ 132 WREG32(MGAREG_IEN, 0); 133 /* Clear bits if they're already high */ 134 WREG32(MGAREG_ICLEAR, 0xf); 135 } 136 > 137 void mgag200_enable_irq(struct mga_device *mdev) 138 { 139 /* Enable only Softrap IRQ */ 140 WREG32(MGAREG_IEN, MGAIRQ_SOFTRAP); 141 } 142
diff --git a/drivers/gpu/drm/mgag200/mgag200_drv.c b/drivers/gpu/drm/mgag200/mgag200_drv.c index 976f0ab2006b..3566fcdfe1e4 100644 --- a/drivers/gpu/drm/mgag200/mgag200_drv.c +++ b/drivers/gpu/drm/mgag200/mgag200_drv.c @@ -110,12 +110,43 @@ resource_size_t mgag200_device_probe_vram(struct mga_device *mdev) return mgag200_probe_vram(mdev->vram, resource_size(mdev->vram_res)); } +irqreturn_t mgag200_driver_irq_handler(int irq, void *arg) +{ + struct mga_device *mdev = (struct mga_device *) arg; + u32 status; + + status = RREG32(MGAREG_STATUS); + + if (status & MGAIRQ_SOFTRAP) { + WREG32(MGAREG_ICLEAR, MGAIRQ_SOFTRAP); + mdev->dma_in_use = 0; + wake_up(&mdev->waitq); + return IRQ_HANDLED; + } + return IRQ_NONE; +} + +void mgag200_init_irq(struct mga_device *mdev) +{ + /* Disable *all* interrupts */ + WREG32(MGAREG_IEN, 0); + /* Clear bits if they're already high */ + WREG32(MGAREG_ICLEAR, 0xf); +} + +void mgag200_enable_irq(struct mga_device *mdev) +{ + /* Enable only Softrap IRQ */ + WREG32(MGAREG_IEN, MGAIRQ_SOFTRAP); +} + int mgag200_device_preinit(struct mga_device *mdev) { struct drm_device *dev = &mdev->base; struct pci_dev *pdev = to_pci_dev(dev->dev); resource_size_t start, len; struct resource *res; + int ret; /* BAR 1 contains registers */ @@ -153,6 +184,16 @@ int mgag200_device_preinit(struct mga_device *mdev) if (!mdev->vram) return -ENOMEM; + mgag200_init_irq(mdev); + ret = devm_request_irq(dev->dev, pdev->irq, mgag200_driver_irq_handler, + IRQF_SHARED, "mgag200_irq", mdev); + if (ret < 0) { + drm_err(dev, "devm_request_irq(VRAM) failed %d\n", ret); + return -ENXIO; + } + init_waitqueue_head(&mdev->waitq); + + mgag200_enable_irq(mdev); return 0; } diff --git a/drivers/gpu/drm/mgag200/mgag200_drv.h b/drivers/gpu/drm/mgag200/mgag200_drv.h index 9e604dbb8e44..02175bfaf5a8 100644 --- a/drivers/gpu/drm/mgag200/mgag200_drv.h +++ b/drivers/gpu/drm/mgag200/mgag200_drv.h @@ -291,6 +291,9 @@ struct mga_device { void __iomem *vram; resource_size_t vram_available; + wait_queue_head_t waitq; + int dma_in_use; + struct drm_plane primary_plane; struct drm_crtc crtc; struct drm_encoder encoder; diff --git a/drivers/gpu/drm/mgag200/mgag200_reg.h b/drivers/gpu/drm/mgag200/mgag200_reg.h index aa73463674e4..748c8e18e938 100644 --- a/drivers/gpu/drm/mgag200/mgag200_reg.h +++ b/drivers/gpu/drm/mgag200/mgag200_reg.h @@ -107,6 +107,9 @@ #define MGAREG_ICLEAR 0x1e18 #define MGAREG_IEN 0x1e1c +/* same bit shift for MGAREG_IEN, MGAREG_ICLEAR and MGAREG_STATUS */ +#define MGAIRQ_SOFTRAP BIT(0) + #define MGAREG_VCOUNT 0x1e20 #define MGAREG_Reset 0x1e40
Register irq, and enable the softrap irq. This patch has no functional impact since softrap irq can't be triggered without DMA. Signed-off-by: Jocelyn Falempe <jfalempe@redhat.com> --- drivers/gpu/drm/mgag200/mgag200_drv.c | 41 +++++++++++++++++++++++++++ drivers/gpu/drm/mgag200/mgag200_drv.h | 3 ++ drivers/gpu/drm/mgag200/mgag200_reg.h | 3 ++ 3 files changed, 47 insertions(+)