Re: [PATCH v4 0/2] add regmap-spi-avmm & Intel Max10 BMC chip support

2020-08-27 Thread Lee Jones
On Thu, 27 Aug 2020, Mark Brown wrote:

> On Thu, Aug 27, 2020 at 07:56:47AM +0100, Lee Jones wrote:
> > On Wed, 26 Aug 2020, Mark Brown wrote:
> 
> > > [2/2] mfd: intel-m10-bmc: add Max10 BMC chip support for Intel FPGA PAC
> > >   commit: 53be8bbc2f4058d4a6bfff3dadf34164bcaafa87
> 
> > Que?  This is yet to be reviewed.
> 
> Sorry, meant to only fetch the first patch.  Dropped now.

Thanks.

-- 
Lee Jones [李琼斯]
Senior Technical Lead - Developer Services
Linaro.org │ Open source software for Arm SoCs
Follow Linaro: Facebook | Twitter | Blog


Re: [PATCH v4 0/2] add regmap-spi-avmm & Intel Max10 BMC chip support

2020-08-27 Thread Mark Brown
On Thu, Aug 27, 2020 at 07:56:47AM +0100, Lee Jones wrote:
> On Wed, 26 Aug 2020, Mark Brown wrote:

> > [2/2] mfd: intel-m10-bmc: add Max10 BMC chip support for Intel FPGA PAC
> >   commit: 53be8bbc2f4058d4a6bfff3dadf34164bcaafa87

> Que?  This is yet to be reviewed.

Sorry, meant to only fetch the first patch.  Dropped now.


signature.asc
Description: PGP signature


Re: [PATCH v4 0/2] add regmap-spi-avmm & Intel Max10 BMC chip support

2020-08-27 Thread Lee Jones
On Wed, 26 Aug 2020, Mark Brown wrote:

> On Wed, 19 Aug 2020 15:34:55 +0800, Xu Yilun wrote:
> > This patchset adds the regmap-spi-avmm to support the Intel SPI Slave to
> > AVMM Bus Bridge (spi-avmm) IP block. It also implements the usercase - the
> > driver of Intel Max10 BMC chip which integrates this IP block.
> > 
> > Patch #1 implements the regmap-spi-avmm.
> > Patch #2 implements the mfd driver of Intel Max10 BMC chip.
> > 
> > [...]
> 
> Applied to
> 
>https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git for-next
> 
> Thanks!
> 
> [1/2] regmap: add Intel SPI Slave to AVMM Bus Bridge support
>   commit: 7f9fb67358a2bcaacbdfeee12e0f19e98c8bdf55

> [2/2] mfd: intel-m10-bmc: add Max10 BMC chip support for Intel FPGA PAC
>   commit: 53be8bbc2f4058d4a6bfff3dadf34164bcaafa87

Que?  This is yet to be reviewed.

-- 
Lee Jones [李琼斯]
Senior Technical Lead - Developer Services
Linaro.org │ Open source software for Arm SoCs
Follow Linaro: Facebook | Twitter | Blog


Re: [PATCH v4 0/2] add regmap-spi-avmm & Intel Max10 BMC chip support

2020-08-26 Thread Mark Brown
On Wed, 19 Aug 2020 15:34:55 +0800, Xu Yilun wrote:
> This patchset adds the regmap-spi-avmm to support the Intel SPI Slave to
> AVMM Bus Bridge (spi-avmm) IP block. It also implements the usercase - the
> driver of Intel Max10 BMC chip which integrates this IP block.
> 
> Patch #1 implements the regmap-spi-avmm.
> Patch #2 implements the mfd driver of Intel Max10 BMC chip.
> 
> [...]

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git for-next

Thanks!

[1/2] regmap: add Intel SPI Slave to AVMM Bus Bridge support
  commit: 7f9fb67358a2bcaacbdfeee12e0f19e98c8bdf55
[2/2] mfd: intel-m10-bmc: add Max10 BMC chip support for Intel FPGA PAC
  commit: 53be8bbc2f4058d4a6bfff3dadf34164bcaafa87

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark


[PATCH v4 0/2] add regmap-spi-avmm & Intel Max10 BMC chip support

2020-08-19 Thread Xu Yilun
This patchset adds the regmap-spi-avmm to support the Intel SPI Slave to
AVMM Bus Bridge (spi-avmm) IP block. It also implements the usercase - the
driver of Intel Max10 BMC chip which integrates this IP block.

Patch #1 implements the regmap-spi-avmm.
Patch #2 implements the mfd driver of Intel Max10 BMC chip.

Main changes from v1:
- Split out the regmap-spi-avmm module out of intel-m10-bmc module.

Main changes from v2:
- Refactor the code of regmap-spi-avmm.
   - Rewrites the rx flow and simplifies the implementation, collapse some
 function calls.
   - Add bounds checking every time we fill trans_buf & phy_buf.
   - Try to configure spi mode on regmap init
   - delete regmap_bus.reg_write/reg_read callbacks.
   - Squash the bug fixing patch.
- Add the sub devices in mfd_cell for Max10 bmc driver.
- Improve comments and some minor fixes.

Main changes from v3:
- Rebased to 5.9-rc1.
- Collapse the phy buf padding code in br_pkt_phy_tx_prepare().

Xu Yilun (2):
  regmap: add Intel SPI Slave to AVMM Bus Bridge support
  mfd: intel-m10-bmc: add Max10 BMC chip support for Intel FPGA PAC

 .../ABI/testing/sysfs-driver-intel-m10-bmc |  15 +
 drivers/base/regmap/Kconfig|   6 +-
 drivers/base/regmap/Makefile   |   1 +
 drivers/base/regmap/regmap-spi-avmm.c  | 719 +
 drivers/mfd/Kconfig|  13 +
 drivers/mfd/Makefile   |   2 +
 drivers/mfd/intel-m10-bmc.c| 169 +
 include/linux/mfd/intel-m10-bmc.h  |  57 ++
 include/linux/regmap.h |  36 ++
 9 files changed, 1017 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
 create mode 100644 drivers/base/regmap/regmap-spi-avmm.c
 create mode 100644 drivers/mfd/intel-m10-bmc.c
 create mode 100644 include/linux/mfd/intel-m10-bmc.h

-- 
2.7.4