From nobody Wed Feb 11 07:07:36 2026 Received: from out-172.mta0.migadu.com (out-172.mta0.migadu.com [91.218.175.172]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 398E228E7 for ; Mon, 20 May 2024 15:04:35 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.172 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1716217477; cv=none; b=pImyk+Wncgqtd7dBF5rLOmpYyeyFqdPvdcAdj/DjkA/iH1KxiKSw2QNqrLUMnqM9tTZIWuf/R6mYavW4U8/x3pINEv2HOlD/gRmn4TDxQ1q2SpTPd7FAzSlhq1sQwoOH/Yry12B9Z2/vVwQc6C2HjAVBP+kA2EG/TjaJCFzKLYM= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1716217477; c=relaxed/simple; bh=rZJaNLBVEf+aK2rDOIXSWaoAcXGZCiPjotRHJZW2cj0=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=uTjCo6bTaK+n9fPk6CZcJdx4GJFbRiqgUVJ4q878I97dF9oCCp6gI0/fGPwwUeH5wklSuUQTFerE9aHlFj6tuuNcZOyVop+WZMeP1SqKPSChqwhhBqbDp5ymXLHZRojKmc6IzFN0tNsUUwgAz/it2/3v+luxfUQvwOlusWPn1jU= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=xduTDc1x; arc=none smtp.client-ip=91.218.175.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="xduTDc1x" X-Envelope-To: linus.walleij@linaro.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1716217474; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=M5zviEf5A12KnXDSQllyVorIBh12Tl6r4o0V0p+XKTg=; b=xduTDc1xFMCmLLPJTZC6FSmby3/D/cKU1Fr3zpI1koYGiES/CQsult1CS8u6WgO6odOyqX g0i5amQ0sxSbUeqDZNLCzwtYPLeydD6MuUp2FF0Un7jMKYBThmk/D/6MEKrs6X56HCG/W+ 3Q4ULtmQEt3q8JPlcqVftRTcTJJrnoU= X-Envelope-To: michal.simek@amd.com X-Envelope-To: linux-gpio@vger.kernel.org X-Envelope-To: sai.krishna.potthuri@amd.com X-Envelope-To: linux-kernel@vger.kernel.org X-Envelope-To: andy.shevchenko@gmail.com X-Envelope-To: linux-arm-kernel@lists.infradead.org X-Envelope-To: sean.anderson@linux.dev X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Sean Anderson To: Linus Walleij , Michal Simek , linux-gpio@vger.kernel.org Cc: Krishna Potthuri , linux-kernel@vger.kernel.org, Andy Shevchenko , linux-arm-kernel@lists.infradead.org, Sean Anderson Subject: [PATCH v2 2/2] pinctrl: zynqmp: Support muxing individual pins Date: Mon, 20 May 2024 11:04:24 -0400 Message-Id: <20240520150424.2531458-3-sean.anderson@linux.dev> In-Reply-To: <20240520150424.2531458-1-sean.anderson@linux.dev> References: <20240520150424.2531458-1-sean.anderson@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" While muxing groups of pins at once can be convenient for large interfaces, it can also be rigid. This is because the group is set to all pins which support a particular function, even though not all pins may be used. For example, the sdhci0 function may be used with a 8-bit eMMC, 4-bit SD card, or even a 1-bit SD card. In these cases, the extra pins may be repurposed for other uses, but this is not currently allowed. There is not too much point in pin "groups" when there are not actual pin groups at the hardware level. The pins can all be muxed individually, so there's no point in adding artificial groups on top. Just mux the pins like the hardware allows. To this effect, add a new group for each pin which can be muxed. These groups are part of each function the pin can be muxed to. We treat group selectors beyond the number of groups as "pin" groups. To set this up, we initialize groups before functions, and then create a bitmap of used pins for each function. These used pins are appended to the function's list of groups. Signed-off-by: Sean Anderson --- Changes in v2: - Use __set_bit instead of set_bit - Use size_add when calculating the number of kcalloc members - Expand commit message with some more motivation drivers/pinctrl/pinctrl-zynqmp.c | 61 ++++++++++++++++++++++---------- 1 file changed, 43 insertions(+), 18 deletions(-) diff --git a/drivers/pinctrl/pinctrl-zynqmp.c b/drivers/pinctrl/pinctrl-zyn= qmp.c index 5c46b7d7ebcb..7cc1e43fb07c 100644 --- a/drivers/pinctrl/pinctrl-zynqmp.c +++ b/drivers/pinctrl/pinctrl-zynqmp.c @@ -10,6 +10,7 @@ =20 #include =20 +#include #include #include #include @@ -97,7 +98,7 @@ static int zynqmp_pctrl_get_groups_count(struct pinctrl_d= ev *pctldev) { struct zynqmp_pinctrl *pctrl =3D pinctrl_dev_get_drvdata(pctldev); =20 - return pctrl->ngroups; + return pctrl->ngroups + zynqmp_desc.npins; } =20 static const char *zynqmp_pctrl_get_group_name(struct pinctrl_dev *pctldev, @@ -105,7 +106,10 @@ static const char *zynqmp_pctrl_get_group_name(struct = pinctrl_dev *pctldev, { struct zynqmp_pinctrl *pctrl =3D pinctrl_dev_get_drvdata(pctldev); =20 - return pctrl->groups[selector].name; + if (selector < pctrl->ngroups) + return pctrl->groups[selector].name; + + return zynqmp_desc.pins[selector - pctrl->ngroups].name; } =20 static int zynqmp_pctrl_get_group_pins(struct pinctrl_dev *pctldev, @@ -115,8 +119,13 @@ static int zynqmp_pctrl_get_group_pins(struct pinctrl_= dev *pctldev, { struct zynqmp_pinctrl *pctrl =3D pinctrl_dev_get_drvdata(pctldev); =20 - *pins =3D pctrl->groups[selector].pins; - *npins =3D pctrl->groups[selector].npins; + if (selector < pctrl->ngroups) { + *pins =3D pctrl->groups[selector].pins; + *npins =3D pctrl->groups[selector].npins; + } else { + *pins =3D &zynqmp_desc.pins[selector - pctrl->ngroups].number; + *npins =3D 1; + } =20 return 0; } @@ -560,10 +569,12 @@ static int zynqmp_pinctrl_prepare_func_groups(struct = device *dev, u32 fid, { u16 resp[NUM_GROUPS_PER_RESP] =3D {0}; const char **fgroups; - int ret, index, i; + int ret, index, i, pin; + unsigned int npins; + unsigned long *used_pins __free(bitmap) =3D + bitmap_zalloc(zynqmp_desc.npins, GFP_KERNEL); =20 - fgroups =3D devm_kcalloc(dev, func->ngroups, sizeof(*fgroups), GFP_KERNEL= ); - if (!fgroups) + if (!used_pins) return -ENOMEM; =20 for (index =3D 0; index < func->ngroups; index +=3D NUM_GROUPS_PER_RESP) { @@ -578,23 +589,37 @@ static int zynqmp_pinctrl_prepare_func_groups(struct = device *dev, u32 fid, if (resp[i] =3D=3D RESERVED_GROUP) continue; =20 - fgroups[index + i] =3D devm_kasprintf(dev, GFP_KERNEL, - "%s_%d_grp", - func->name, - index + i); - if (!fgroups[index + i]) - return -ENOMEM; - groups[resp[i]].name =3D devm_kasprintf(dev, GFP_KERNEL, "%s_%d_grp", func->name, index + i); if (!groups[resp[i]].name) return -ENOMEM; + + for (pin =3D 0; pin < groups[resp[i]].npins; pin++) + __set_bit(groups[resp[i]].pins[pin], used_pins); } } done: + npins =3D bitmap_weight(used_pins, zynqmp_desc.npins); + fgroups =3D devm_kcalloc(dev, size_add(func->ngroups, npins), + sizeof(*fgroups), GFP_KERNEL); + if (!fgroups) + return -ENOMEM; + + for (i =3D 0; i < func->ngroups; i++) { + fgroups[i] =3D devm_kasprintf(dev, GFP_KERNEL, "%s_%d_grp", + func->name, i); + if (!fgroups[i]) + return -ENOMEM; + } + + pin =3D 0; + for_each_set_bit(pin, used_pins, zynqmp_desc.npins) + fgroups[i++] =3D zynqmp_desc.pins[pin].name; + func->groups =3D fgroups; + func->ngroups +=3D npins; =20 return 0; } @@ -772,6 +797,10 @@ static int zynqmp_pinctrl_prepare_function_info(struct= device *dev, if (!groups) return -ENOMEM; =20 + ret =3D zynqmp_pinctrl_prepare_group_pins(dev, groups, pctrl->ngroups); + if (ret) + return ret; + for (i =3D 0; i < pctrl->nfuncs; i++) { ret =3D zynqmp_pinctrl_prepare_func_groups(dev, i, &funcs[i], groups); @@ -779,10 +808,6 @@ static int zynqmp_pinctrl_prepare_function_info(struct= device *dev, return ret; } =20 - ret =3D zynqmp_pinctrl_prepare_group_pins(dev, groups, pctrl->ngroups); - if (ret) - return ret; - pctrl->funcs =3D funcs; pctrl->groups =3D groups; =20 --=20 2.35.1.1320.gc452695387.dirty