From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751235AbeCHX6e (ORCPT ); Thu, 8 Mar 2018 18:58:34 -0500 Received: from smtp.codeaurora.org ([198.145.29.96]:49294 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750800AbeCHX6d (ORCPT ); Thu, 8 Mar 2018 18:58:33 -0500 DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org 78CBA6022C Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=ilina@codeaurora.org Date: Thu, 8 Mar 2018 16:58:30 -0700 From: Lina Iyer To: Stephen Boyd Cc: andy.gross@linaro.org, david.brown@linaro.org, linux-arm-msm@vger.kernel.org, linux-soc@vger.kernel.org, rnayak@codeaurora.org, bjorn.andersson@linaro.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v3 05/10] drivers: qcom: rpmh-rsc: write sleep/wake requests to TCS Message-ID: <20180308235830.GC3577@codeaurora.org> References: <20180302164317.10554-1-ilina@codeaurora.org> <20180302164317.10554-6-ilina@codeaurora.org> <152053809443.219802.15873554351627646762@swboyd.mtv.corp.google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <152053809443.219802.15873554351627646762@swboyd.mtv.corp.google.com> User-Agent: Mutt/1.9.3 (2018-01-21) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Mar 08 2018 at 12:41 -0700, Stephen Boyd wrote: >Quoting Lina Iyer (2018-03-02 08:43:12) >> Sleep and wake requests are sent when the application processor >> subsystem of the SoC is entering deep sleep states like in suspend. >> These requests help lower the system power requirements when the >> resources are not in use. >> >> Sleep and wake requests are written to the TCS slots but are not >> triggered at the time of writing. The TCS are triggered by the firmware >> after the last of the CPUs has executed its WFI. Since these requests >> may come in different batches of requests, it is job of this controller > >it is the job? > >> driver to find arrange the requests into the available TCSes. > >find and arrange? > Ok to both. >> >> Signed-off-by: Lina Iyer >> --- >> drivers/soc/qcom/rpmh-internal.h | 7 +++ >> drivers/soc/qcom/rpmh-rsc.c | 128 +++++++++++++++++++++++++++++++++++++++ >> 2 files changed, 135 insertions(+) >> >> diff --git a/drivers/soc/qcom/rpmh-internal.h b/drivers/soc/qcom/rpmh-internal.h >> index 1442a64ac4c5..65dfe1716265 100644 >> --- a/drivers/soc/qcom/rpmh-internal.h >> +++ b/drivers/soc/qcom/rpmh-internal.h >> @@ -13,6 +13,7 @@ >> #define MAX_CMDS_PER_TCS 16 >> #define MAX_TCS_PER_TYPE 3 >> #define MAX_TCS_NR (MAX_TCS_PER_TYPE * TCS_TYPE_NR) >> +#define MAX_TCS_SLOTS (MAX_CMDS_PER_TCS * MAX_TCS_PER_TYPE) >> >> struct rsc_drv; >> >> @@ -44,6 +45,8 @@ struct tcs_response { >> * @ncpt: number of commands in each TCS >> * @tcs_lock: lock for synchronizing this TCS writes >> * @responses: response objects for requests sent from each TCS >> + * @cmd_addr: flattened cache of cmds in sleep/wake TCS > >Maybe 'cmds' or 'cmd_cache'? > Ok >> + * @slots: indicates which of @cmd_addr are occupied >> */ >> struct tcs_group { >> struct rsc_drv *drv; >> @@ -54,6 +57,9 @@ struct tcs_group { >> int ncpt; >> spinlock_t tcs_lock; >> struct tcs_response *responses[MAX_TCS_PER_TYPE]; >> + u32 *cmd_addr; >> + DECLARE_BITMAP(slots, MAX_TCS_SLOTS); >> + > >Drop the newline please. > Done. >> }; >> >> /** >> @@ -450,6 +457,114 @@ int rpmh_rsc_send_data(struct rsc_drv *drv, struct tcs_request *msg) >> } >> EXPORT_SYMBOL(rpmh_rsc_send_data); >> >> +static int find_match(struct tcs_group *tcs, struct tcs_cmd *cmd, int len) > >const tcs and cmd? > Ok >> +{ >> + bool found = false; > >Drop. > Ok >> + int i = 0, j; >> + >> + /* Check for already cached commands */ >> + while ((i = find_next_bit(tcs->slots, MAX_TCS_SLOTS, i)) < > >for_each_set_bit(... ? > Ok >> + MAX_TCS_SLOTS) { >> + if (tcs->cmd_addr[i] != cmd[0].addr) { >> + i++; >> + continue; >> + } >> + /* sanity check to ensure the seq is same */ >> + for (j = 1; j < len; j++) { >> + WARN((tcs->cmd_addr[i + j] != cmd[j].addr), >> + "Message does not match previous sequence.\n"); >> + return -EINVAL; >> + } > >Can you fold the if and for loop together? > > for (j = 0; j < len; j++) { > if (tcs->cmd_addr[i + j] != cmd[j].addr) { > if (j == 0) > break; /* Try another slot */ > WARN("Message doesn't match previous sequence\n"); > return -EINVAL; > } else if (j == len - 1) { > return i; > } > } > } > > return -ENODATA; > OK >> + found = true; >> + break; >> + } >> + >> + return found ? i : -1; > >Is there space between slots? Just trying to understand how we >differentiate two adjacent cmd buffers with the bitmap scheme if this >loop is looking for free bits to find slots. Or maybe we need two >bitmaps where one is the allocated region and the other is something >indicating the start bit of a message > there could be holes and we may have a set of commands that we would like to fit together but may not sufficiently fit into any hole. So we pick the first contiguous available slots and go with it. We don't need multiple bitmaps. >> +} >> + >> +static int find_slots(struct tcs_group *tcs, struct tcs_request *msg, >> + int *m, int *n) >> +{ >> + int slot, offset; >> + int i = 0; >> + >> + /* Find if we already have the msg in our TCS */ >> + slot = find_match(tcs, msg->payload, msg->num_payload); >> + if (slot >= 0) >> + goto copy_data; > >Shouldn't this goto skip setting the bits in tcs->slots? > No, we overwrite what we found with this new data. >> + >> + /* Do over, until we can fit the full payload in a TCS */ >> + do { >> + slot = bitmap_find_next_zero_area(tcs->slots, MAX_TCS_SLOTS, >> + i, msg->num_payload, 0); >> + if (slot == MAX_TCS_SLOTS) >> + break; >> + i += tcs->ncpt; >> + } while (slot + msg->num_payload - 1 >= i); >> + >> + if (slot == MAX_TCS_SLOTS) >> + return -ENOMEM; > >Would be nice to remove this duplicate condition somehow. Maybe a goto? > I would return instead of the break earlier instead of this here. >> + >> +copy_data: >> + bitmap_set(tcs->slots, slot, msg->num_payload); >> + /* Copy the addresses of the resources over to the slots */ >> + if (tcs->cmd_addr) { > >find_match() above didn't check for tcs->cmd_addr. Does this ever happen >to fail? > Not allocated for active TCSes. I should be checking for it there as well. Not sure how I didnt see a failure. >> + for (i = 0; i < msg->num_payload; i++) >> + tcs->cmd_addr[slot + i] = msg->payload[i].addr; >> + } >> + >> + offset = slot / tcs->ncpt; >> + *m = offset + tcs->tcs_offset; >> + *n = slot % tcs->ncpt; >> + >> + return 0; >> +} >> + >> +static int tcs_ctrl_write(struct rsc_drv *drv, struct tcs_request *msg) >> +{ >> + struct tcs_group *tcs; >> + int m = 0, n = 0; >> + unsigned long flags; >> + int ret = 0; > >Drop initial assignment please. > Ok >> + >> + tcs = get_tcs_for_msg(drv, msg); >> + if (IS_ERR(tcs)) >> + return PTR_ERR(tcs); >> + >> + spin_lock_irqsave(&tcs->tcs_lock, flags); >> + /* find the m-th TCS and the n-th position in the TCS to write to */ >> + ret = find_slots(tcs, msg, &m, &n); >> + if (!ret) >> + __tcs_buffer_write(drv, m, n, msg); >> + spin_unlock_irqrestore(&tcs->tcs_lock, flags); >> + >> + return ret; >> +} >> + >[...] >> @@ -530,6 +645,19 @@ static int rpmh_probe_tcs_config(struct platform_device *pdev, >> tcs->tcs_mask = ((1 << tcs->num_tcs) - 1) << st; >> tcs->tcs_offset = st; >> st += tcs->num_tcs; >> + >> + /* >> + * Allocate memory to cache sleep and wake requests to >> + * avoid reading TCS register memory. >> + */ >> + if (tcs->type == ACTIVE_TCS) >> + continue; >> + >> + tcs->cmd_addr = devm_kzalloc(&pdev->dev, > >devm_kcalloc(&pdev->dev, tcs->num_tcs * ncpt, sizeof(u32) ? > Ok Thanks, Lina >> + sizeof(u32) * tcs->num_tcs * ncpt, >> + GFP_KERNEL); >> + if (!tcs->cmd_addr) >> + return -ENOMEM;