All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jagan Teki <jagan@amarulasolutions.com>
To: u-boot@lists.denx.de
Subject: [PATCH v6 03/14] phy: Add get/enable/disable for a bulk of phys
Date: Sat, 25 Apr 2020 18:58:09 +0530	[thread overview]
Message-ID: <CAMty3ZDU0Ze3W4gQc_z8-C16jNZ1B1nXOYUb_8WmqfargBF9RQ@mail.gmail.com> (raw)
In-Reply-To: <1587352883-8641-4-git-send-email-chunfeng.yun@mediatek.com>

On Mon, Apr 20, 2020 at 8:52 AM Chunfeng Yun <chunfeng.yun@mediatek.com> wrote:
>
> This patch adds a "bulk" API to the phy API in order to
> get/enable/disable a group of phys associated with a device.
>
> The bulk API will avoid adding a copy of the same code to
> manage a group of phys in drivers.
>
> Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
> Reviewed-by: Weijie Gao <weijie.gao@mediatek.com>
> ---
> v6: add Reviewed-by Weijie
>
> v5: no changes
>
> v4: new patch
> ---
>  drivers/phy/phy-uclass.c | 80 ++++++++++++++++++++++++++++++++++++++++
>  include/generic-phy.h    | 66 +++++++++++++++++++++++++++++++++
>  2 files changed, 146 insertions(+)
>
> diff --git a/drivers/phy/phy-uclass.c b/drivers/phy/phy-uclass.c
> index e201a90c8c..62580520ad 100644
> --- a/drivers/phy/phy-uclass.c
> +++ b/drivers/phy/phy-uclass.c
> @@ -6,6 +6,7 @@
>
>  #include <common.h>
>  #include <dm.h>
> +#include <dm/devres.h>
>  #include <generic-phy.h>
>
>  static inline struct phy_ops *phy_dev_ops(struct udevice *dev)
> @@ -161,6 +162,85 @@ int generic_phy_power_off(struct phy *phy)
>         return ops->power_off ? ops->power_off(phy) : 0;
>  }
>
> +int generic_phy_get_bulk(struct udevice *dev, struct phy_bulk *bulk)
> +{
> +       int i, ret, count;
> +
> +       bulk->count = 0;
> +
> +       /* Return if no phy declared */
> +       if (!dev_read_prop(dev, "phys", NULL))
> +               return 0;
> +
> +       count = dev_count_phandle_with_args(dev, "phys", "#phy-cells");
> +       if (count < 1)
> +               return count;
> +
> +       bulk->phys = devm_kcalloc(dev, count, sizeof(struct phy), GFP_KERNEL);
> +       if (!bulk->phys)
> +               return -ENOMEM;
> +
> +       for (i = 0; i < count; i++) {
> +               ret = generic_phy_get_by_index(dev, i, &bulk->phys[i]);
> +               if (ret) {
> +                       pr_err("Failed to get PHY%d for %s\n", i, dev->name);
> +                       return ret;
> +               }
> +               bulk->count++;
> +       }
> +
> +       return 0;
> +}
> +
> +int generic_phy_enable_bulk(struct phy_bulk *bulk)
> +{
> +       struct phy *phys = bulk->phys;
> +       int count = bulk->count;
> +       int i, ret;
> +
> +       for (i = 0; i < count; i++) {
> +               ret = generic_phy_init(&phys[i]);
> +               if (ret) {
> +                       pr_err("Can't init PHY%d\n", i);
> +                       goto phys_init_err;
> +               }
> +       }
> +
> +       for (i = 0; i < count; i++) {
> +               ret = generic_phy_power_on(&phys[i]);
> +               if (ret) {
> +                       pr_err("Can't power PHY%d\n", i);
> +                       goto phys_poweron_err;
> +               }
> +       }

Better to have bulk init, bulk power on separately since not all phy
consumers will init, power on sequentially.

> +
> +       return 0;
> +
> +phys_poweron_err:
> +       for (; i > 0; i--)
> +               generic_phy_power_off(&phys[i - 1]);
> +
> +       i = count;
> +phys_init_err:
> +       for (; i > 0; i--)
> +               generic_phy_exit(&phys[i - 1]);
> +
> +       return ret;
> +}
> +
> +int generic_phy_disable_bulk(struct phy_bulk *bulk)
> +{
> +       struct phy *phys = bulk->phys;
> +       int i, ret = 0;
> +
> +       for (i = 0; i < bulk->count; i++) {
> +               ret |= generic_phy_power_off(&phys[i]);
> +               ret |= generic_phy_exit(&phys[i]);
> +       }

Same, like above.

Jagan.

  reply	other threads:[~2020-04-25 13:28 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-20  3:21 [PATCH v6 00/14] Add support for MediaTek xHCI host controller Chunfeng Yun
2020-04-20  3:21 ` [PATCH v6 01/14] dm: core: Add function to get child count of ofnode or device Chunfeng Yun
2020-04-20  3:21 ` [PATCH v6 02/14] test: dm: add test item for ofnode_get_child_count() Chunfeng Yun
2020-04-20 13:10   ` Simon Glass
2020-04-20 14:07   ` Fabio Estevam
2020-04-21  1:39     ` Chunfeng Yun
2020-04-20  3:21 ` [PATCH v6 03/14] phy: Add get/enable/disable for a bulk of phys Chunfeng Yun
2020-04-25 13:28   ` Jagan Teki [this message]
2020-04-27  2:16     ` Chunfeng Yun
2020-04-28 19:45       ` Jagan Teki
2020-04-29  1:41         ` Chunfeng Yun
2020-04-20  3:21 ` [PATCH v6 04/14] test: dm: phy: add a test item for the phy_bulk API Chunfeng Yun
2020-04-20  3:21 ` [PATCH v6 05/14] usb: dwc3: use the phy bulk API to get phys Chunfeng Yun
2020-04-20  3:21 ` [PATCH v6 06/14] usb: dwc2_udc_otg: " Chunfeng Yun
2020-04-20  3:21 ` [PATCH v6 07/14] phy: phy-mtk-tphy: add support USB phys Chunfeng Yun
2020-04-20  3:21 ` [PATCH v6 08/14] phy: phy-mtk-tphy: add support new version Chunfeng Yun
2020-04-20  3:21 ` [PATCH v6 09/14] phy: phy-mtk-tphy: add a new reference clock Chunfeng Yun
2020-04-20  3:21 ` [PATCH v6 10/14] xhci: mediatek: Add support for MTK xHCI host controller Chunfeng Yun
2020-04-20  3:21 ` [PATCH v6 11/14] arm: dts: mt7629: add usb related nodes Chunfeng Yun
2020-04-20  3:21 ` [PATCH v6 12/14] dt-bindings: phy-mtk-tphy: add properties of address mapping and clocks Chunfeng Yun
2020-04-20  3:21 ` [PATCH v6 13/14] dt-bindings: usb: mtk-xhci: Add binding for MediaTek xHCI host controller Chunfeng Yun
2020-04-20  3:21 ` [PATCH v6 14/14] MAINTAINERS: MediaTek: add USB related files Chunfeng Yun

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAMty3ZDU0Ze3W4gQc_z8-C16jNZ1B1nXOYUb_8WmqfargBF9RQ@mail.gmail.com \
    --to=jagan@amarulasolutions.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.