Re: [PATCH 7/7] accel/qaic: Add AIC200 support

2024-12-27 Thread kernel test robot
https://lore.kernel.org/r/20241213213340.2551697-8-quic_jhugo%40quicinc.com patch subject: [PATCH 7/7] accel/qaic: Add AIC200 support config: i386-randconfig-007-20241227 (https://download.01.org/0day-ci/archive/20241228/202412280859.rkildm5t-...@intel.com/config) compiler: clang version 19.1.3 (https://

Re: [PATCH 7/7] accel/qaic: Add AIC200 support

2024-12-20 Thread Lizhi Hou
On 12/20/24 09:50, Jeffrey Hugo wrote: On 12/20/2024 10:33 AM, Lizhi Hou wrote: On 12/20/24 09:26, Jeffrey Hugo wrote: On 12/13/2024 5:49 PM, Lizhi Hou wrote: On 12/13/24 13:33, Jeffrey Hugo wrote: +static const struct qaic_device_config aic200_config = { +    .family = FAMILY_AIC200, +  

Re: [PATCH 7/7] accel/qaic: Add AIC200 support

2024-12-20 Thread Jeffrey Hugo
On 12/20/2024 10:33 AM, Lizhi Hou wrote: On 12/20/24 09:26, Jeffrey Hugo wrote: On 12/13/2024 5:49 PM, Lizhi Hou wrote: On 12/13/24 13:33, Jeffrey Hugo wrote: +static const struct qaic_device_config aic200_config = { +    .family = FAMILY_AIC200, +    .bar_mask = BIT(0) | BIT(1) | BIT(2) | B

Re: [PATCH 7/7] accel/qaic: Add AIC200 support

2024-12-20 Thread Lizhi Hou
On 12/20/24 09:26, Jeffrey Hugo wrote: On 12/13/2024 5:49 PM, Lizhi Hou wrote: On 12/13/24 13:33, Jeffrey Hugo wrote: @@ -573,6 +898,13 @@ struct mhi_controller *qaic_mhi_register_controller(struct pci_dev *pci_dev, voi   mhi_cntrl->nr_irqs = 1;   mhi_cntrl->irq = devm_kmalloc(&pci_

Re: [PATCH 7/7] accel/qaic: Add AIC200 support

2024-12-20 Thread Jeffrey Hugo
On 12/13/2024 5:49 PM, Lizhi Hou wrote: On 12/13/24 13:33, Jeffrey Hugo wrote: @@ -573,6 +898,13 @@ struct mhi_controller *qaic_mhi_register_controller(struct pci_dev *pci_dev, voi   mhi_cntrl->nr_irqs = 1;   mhi_cntrl->irq = devm_kmalloc(&pci_dev->dev, sizeof(*mhi_cntrl->irq), GFP_KE

Re: [PATCH 7/7] accel/qaic: Add AIC200 support

2024-12-13 Thread Lizhi Hou
On 12/13/24 13:33, Jeffrey Hugo wrote: Add basic support for the new AIC200 product. The PCIe Device ID is 0xa110. With this, we can turn on the lights for AIC200 by leveraging much of the existing driver. Co-developed-by: Youssef Samir Signed-off-by: Youssef Samir Signed-off-by: Jeffrey Hug

[PATCH 7/7] accel/qaic: Add AIC200 support

2024-12-13 Thread Jeffrey Hugo
Add basic support for the new AIC200 product. The PCIe Device ID is 0xa110. With this, we can turn on the lights for AIC200 by leveraging much of the existing driver. Co-developed-by: Youssef Samir Signed-off-by: Youssef Samir Signed-off-by: Jeffrey Hugo --- drivers/accel/qaic/mhi_controller.c