From: POTIN LAI <potin.lai@quantatw.com>
To: linux-aspeed@lists.ozlabs.org
Subject: [PATCH v2 2/3] net: mdio: aspeed: Introduce read write function for c22 and c45
Date: Thu, 7 Apr 2022 00:33:54 +0800 [thread overview]
Message-ID: <9dce42c6-3a10-7772-ab6a-3a1947cfb9fc@quantatw.com> (raw)
In-Reply-To: <Yk2E3X7MaJhWi32O@lunn.ch>
Andrew Lunn ? 6/04/2022 8:17 pm ??:
>> +static int aspeed_mdio_read(struct mii_bus *bus, int addr, int regnum)
>> +{
>> + dev_dbg(&bus->dev, "%s: addr: %d, regnum: %d\n", __func__, addr,
>> + regnum);
>> +
>> + if (regnum & MII_ADDR_C45)
>> + return aspeed_mdio_read_c45(bus, addr, regnum);
>> +
>> + return aspeed_mdio_read_c22(bus, addr, regnum);
>> +}
>> +
>> static int aspeed_mdio_write(struct mii_bus *bus, int addr, int regnum, u16 val)
>> {
>> dev_dbg(&bus->dev, "%s: addr: %d, regnum: %d, val: 0x%x\n",
>> __func__, addr, regnum, val);
>>
>> - /* Just clause 22 for the moment */
>> if (regnum & MII_ADDR_C45)
>> - return -EOPNOTSUPP;
>> + return aspeed_mdio_write_c45(bus, addr, regnum, val);
>>
>> - return aspeed_mdio_op(bus, ASPEED_MDIO_CTRL_ST_C22, MDIO_C22_OP_WRITE,
>> - addr, regnum, val);
>> + return aspeed_mdio_write_c22(bus, addr, regnum, val);
>> }
> Hi Portin
>
> Nice structure. This will helper with future cleanup where C22 and C45
> will be completely separated, and the c45 variants will be directly
> passed dev_ad and reg, rather than have to extract them from regnum.
>
> A few process issues.
>
> Please read the netdev FAQ. The subject list should indicate the tree,
> and there should be an patch 0/3 which explains the big picture of
> what the patchset does. 0/3 will then be used for the merge commit.
>
> Andrew
Hi Andrew,
Thank you for the notice, it looks like I missed sent out patch 0/3. I will resend whole v2 patches again with tree name.
Potin
next prev parent reply other threads:[~2022-04-06 16:33 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20220406012002.15128-1-potin.lai@quantatw.com>
2022-04-06 1:20 ` [PATCH v2 1/3] net: mdio: aspeed: move reg accessing part into separate functions Potin Lai
2022-04-06 1:20 ` [PATCH v2 2/3] net: mdio: aspeed: Introduce read write function for c22 and c45 Potin Lai
2022-04-06 12:17 ` Andrew Lunn
2022-04-06 16:33 ` POTIN LAI [this message]
2022-04-06 1:20 ` [PATCH v2 3/3] net: mdio: aspeed: Add c45 support Potin Lai
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=9dce42c6-3a10-7772-ab6a-3a1947cfb9fc@quantatw.com \
--to=potin.lai@quantatw.com \
--cc=linux-aspeed@lists.ozlabs.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).