[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <DB8PR04MB6795EE167EB23830A3FDA3EEE6320@DB8PR04MB6795.eurprd04.prod.outlook.com>
Date: Tue, 29 Sep 2020 12:50:47 +0000
From: Joakim Zhang <qiangqing.zhang@....com>
To: Marc Kleine-Budde <mkl@...gutronix.de>,
"linux-can@...r.kernel.org" <linux-can@...r.kernel.org>
CC: "netdev@...r.kernel.org" <netdev@...r.kernel.org>,
dl-linux-imx <linux-imx@....com>
Subject: RE: [PATCH V4 1/3] can: flexcan: initialize all flexcan memory for
ECC function
> -----Original Message-----
> From: Marc Kleine-Budde <mkl@...gutronix.de>
> Sent: 2020年9月29日 20:46
> To: Joakim Zhang <qiangqing.zhang@....com>; linux-can@...r.kernel.org
> Cc: netdev@...r.kernel.org; dl-linux-imx <linux-imx@....com>
> Subject: Re: [PATCH V4 1/3] can: flexcan: initialize all flexcan memory for ECC
> function
>
> On 9/29/20 2:38 PM, Joakim Zhang wrote:
> >>> return flexcan_set_bittiming_ctrl(dev); }
> >>>
> >>> +static void flexcan_init_ram(struct net_device *dev) {
> >>> + struct flexcan_priv *priv = netdev_priv(dev);
> >>> + struct flexcan_regs __iomem *regs = priv->regs;
> >>> + u32 reg_ctrl2;
> >>> +
> >>> + /* 11.8.3.13 Detection and correction of memory errors:
> >>> + * CTRL2[WRMFRZ] grants write access to all memory positions that
> >>> + * require initialization, ranging from 0x080 to 0xADF and
> >>> + * from 0xF28 to 0xFFF when the CAN FD feature is enabled.
> >>> + * The RXMGMASK, RX14MASK, RX15MASK, and RXFGMASK
> registers
> >> need to
> >>> + * be initialized as well. MCR[RFEN] must not be set during memory
> >>> + * initialization.
> >>> + */
> >>> + reg_ctrl2 = priv->read(®s->ctrl2);
> >>> + reg_ctrl2 |= FLEXCAN_CTRL2_WRMFRZ;
> >>> + priv->write(reg_ctrl2, ®s->ctrl2);
> >>> +
> >>> + memset_io(®s->mb[0][0], 0,
> >>> + (u8 *)®s->rx_smb1[3] - ®s->mb[0][0] + 0x4);
> >>
> >> why the cast?
> >
> > Due to mb is defined as a u8. And the count of memset_io is bytes.
>
> right. this is why you don't need the 2nd cast.
Yes, do you need me send a patch to improve it with offsetof()?
Best Regards,
Joakim Zhang
> Marc
>
>
> --
> Pengutronix e.K. | Marc Kleine-Budde |
> Embedded Linux | https://www.pengutronix.de |
> Vertretung West/Dortmund | Phone: +49-231-2826-924 |
> Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
Powered by blists - more mailing lists