On Wed, Mar 05, 2025 at 03:14:50PM +0800, lihuisong (C) wrote:Sure, I'll test this series.
在 2025/3/3 18:51, Sudeep Holla 写道:Thanks!
The PCC driver now handles mapping and unmapping of shared memoryWith belows to change,
areas as part of pcc_mbox_{request,free}_channel(). Without these before,
this Kunpeng HCCS driver did handling of those mappings like several
other PCC mailbox client drivers.
There were redundant operations, leading to unnecessary code. Maintaining
the consistency across these driver was harder due to scattered handling
of shmem.
Just use the mapped shmem and remove all redundant operations from this
driver.
Cc: Huisong Li <lihuisong@xxxxxxxxxx>
Signed-off-by: Sudeep Holla <sudeep.holla@xxxxxxx>
Reviewed-by: Huisong Li <lihuisong@xxxxxxxxxx>
[...]
Sure.- if (!pcc_chan->shmem_base_addr ||Now the check of shared base address is not here. The log about this address
- pcc_chan->shmem_size != HCCS_PCC_SHARE_MEM_BYTES) {
+ if (pcc_chan->shmem_size != HCCS_PCC_SHARE_MEM_BYTES) {
dev_err(dev, "The base address or size (%llu) of PCC communication region is invalid.\n",
pcc_chan->shmem_size);
no need to be printed.
Can you help me fix it like:
dev_err(dev, "The base size (%llu) of PCC communication region must be %d Byte.\n",
pcc_chan->shmem_size, HCCS_PCC_SHARE_MEM_BYTES
);
Did you get a chance to validate this driver and any other users of PCC
on your platform with these changes + the error handling fix you pointed
out ? That would be very useful as I don't have any set up to test.
.