public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/1] misc: st32fwu: Add stm32 upgrade protocol handling
@ 2014-11-08 13:29 Karol Wrona
  2014-11-08 13:29 ` [PATCH v4 1/1] " Karol Wrona
  0 siblings, 1 reply; 6+ messages in thread
From: Karol Wrona @ 2014-11-08 13:29 UTC (permalink / raw)
  To: Jonathan Cameron, Hartmut Knaack, linux-iio, Arnd Bergmann,
	linux-kernel
  Cc: Bartlomiej Zolnierkiewicz, Kyungmin Park, Antonio Borneo,
	Karol Wrona

Hello,

This patch is needed by the sensorhub driver which uses STM32F4xx and Jonathan
suggested to factor out these sources (mentioned in: 
[RFC/PATCH 2/6] misc: sensorhub: Add sensorhub).

I feel a bit ashamed because I know a bit STM32F4 controllers but I did not
realize that it is generic ST protocol. It helped us a lot because this
code really needed some refactoring.

So this patch contains SPI protocol used in the STM32 bootloader and is based
on AN4286. Generally it can be used to implement handling of other interfaces
like UART or I2C because the flow is quite similar and maybe adding proper
hw access callbacks will do all work.

It supports:
  - get info frame
  - get version
  - firmware write (write, read, write address, erase)

>From v3:
  Fixes after Hartmut Knaack review:
    - typos, comments style
    - lengths, timeouts as unsigned values

TODO:
  erase command with sector mode
  command checking and disabling unimplemented ones


Karol Wrona (1):
  misc: st32fwu: Add stm32 upgrade protocol handling

 drivers/misc/Kconfig               |    1 +
 drivers/misc/Makefile              |    1 +
 drivers/misc/stm32fwu/Kconfig      |    6 +
 drivers/misc/stm32fwu/Makefile     |    1 +
 drivers/misc/stm32fwu/stm32_core.c |  403 ++++++++++++++++++++++++++++++++++++
 drivers/misc/stm32fwu/stm32_core.h |   81 ++++++++
 drivers/misc/stm32fwu/stm32_spi.c  |  108 ++++++++++
 include/linux/stm32fwu.h           |   49 +++++
 8 files changed, 650 insertions(+)
 create mode 100644 drivers/misc/stm32fwu/Kconfig
 create mode 100644 drivers/misc/stm32fwu/Makefile
 create mode 100644 drivers/misc/stm32fwu/stm32_core.c
 create mode 100644 drivers/misc/stm32fwu/stm32_core.h
 create mode 100644 drivers/misc/stm32fwu/stm32_spi.c
 create mode 100644 include/linux/stm32fwu.h

-- 
1.7.9.5


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-11-20 19:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-08 13:29 [PATCH v4 0/1] misc: st32fwu: Add stm32 upgrade protocol handling Karol Wrona
2014-11-08 13:29 ` [PATCH v4 1/1] " Karol Wrona
2014-11-19 23:05   ` Hartmut Knaack
2014-11-20  6:18   ` Antonio Borneo
2014-11-20 11:32     ` Karol Wrona
2014-11-20 19:09     ` Karol Wrona

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox