qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH for-6.1 0/3] docs: Document arm mainstone, kzm, imx25-pdk
@ 2021-07-22 17:52 Peter Maydell
  2021-07-22 17:52 ` [PATCH for-6.1 1/3] docs: Add documentation of Arm 'mainstone' board Peter Maydell
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Peter Maydell @ 2021-07-22 17:52 UTC (permalink / raw)
  To: qemu-arm, qemu-devel; +Cc: Jean-Christophe Dubois

This patchset adds brief documentation for another set of Arm
boards. As usual, people familiar with these boards are welcome
to provide more detail for the docs -- I just did the minimum
"name the board and list emulated devices identified from a
quick scan through the source code".

(After this we still have 9 undocumented Arm machines.)

thanks
-- PMM

Peter Maydell (3):
  docs: Add documentation of Arm 'mainstone' board
  docs: Add documentation of Arm 'kzm' board
  docs: Add documentation of Arm 'imx25-pdk' board

 docs/system/arm/imx25-pdk.rst | 19 +++++++++++++++++++
 docs/system/arm/kzm.rst       | 18 ++++++++++++++++++
 docs/system/arm/mainstone.rst | 25 +++++++++++++++++++++++++
 docs/system/target-arm.rst    |  3 +++
 MAINTAINERS                   |  3 +++
 5 files changed, 68 insertions(+)
 create mode 100644 docs/system/arm/imx25-pdk.rst
 create mode 100644 docs/system/arm/kzm.rst
 create mode 100644 docs/system/arm/mainstone.rst

-- 
2.20.1



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

* [PATCH for-6.1 1/3] docs: Add documentation of Arm 'mainstone' board
  2021-07-22 17:52 [PATCH for-6.1 0/3] docs: Document arm mainstone, kzm, imx25-pdk Peter Maydell
@ 2021-07-22 17:52 ` Peter Maydell
  2021-07-22 17:52 ` [PATCH for-6.1 2/3] docs: Add documentation of Arm 'kzm' board Peter Maydell
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Peter Maydell @ 2021-07-22 17:52 UTC (permalink / raw)
  To: qemu-arm, qemu-devel; +Cc: Jean-Christophe Dubois

Add brief documentation of the Arm 'mainstone' board.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
 docs/system/arm/mainstone.rst | 25 +++++++++++++++++++++++++
 docs/system/target-arm.rst    |  1 +
 MAINTAINERS                   |  1 +
 3 files changed, 27 insertions(+)
 create mode 100644 docs/system/arm/mainstone.rst

diff --git a/docs/system/arm/mainstone.rst b/docs/system/arm/mainstone.rst
new file mode 100644
index 00000000000..05310f42c7f
--- /dev/null
+++ b/docs/system/arm/mainstone.rst
@@ -0,0 +1,25 @@
+Intel Mainstone II board (``mainstone``)
+========================================
+
+The ``mainstone`` board emulates the Intel Mainstone II development
+board, which uses a PXA270 CPU.
+
+Emulated devices:
+
+- Flash memory
+- Keypad
+- MMC controller
+- 91C111 ethernet
+- PIC
+- Timer
+- DMA
+- GPIO
+- FIR
+- Serial
+- LCD controller
+- SSP
+- USB controller
+- RTC
+- PCMCIA
+- I2C
+- I2S
diff --git a/docs/system/target-arm.rst b/docs/system/target-arm.rst
index c0c2585c0ad..ad3f5f435d6 100644
--- a/docs/system/target-arm.rst
+++ b/docs/system/target-arm.rst
@@ -90,6 +90,7 @@ undocumented; you can get a complete list by running
    arm/highbank
    arm/musicpal
    arm/gumstix
+   arm/mainstone
    arm/nrf
    arm/nseries
    arm/nuvoton
diff --git a/MAINTAINERS b/MAINTAINERS
index 4256ad1adbb..47ddcbb7f7a 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -856,6 +856,7 @@ F: include/hw/arm/pxa.h
 F: include/hw/arm/sharpsl.h
 F: include/hw/display/tc6393xb.h
 F: docs/system/arm/xscale.rst
+F: docs/system/arm/mainstone.rst
 
 SABRELITE / i.MX6
 M: Peter Maydell <peter.maydell@linaro.org>
-- 
2.20.1



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

* [PATCH for-6.1 2/3] docs: Add documentation of Arm 'kzm' board
  2021-07-22 17:52 [PATCH for-6.1 0/3] docs: Document arm mainstone, kzm, imx25-pdk Peter Maydell
  2021-07-22 17:52 ` [PATCH for-6.1 1/3] docs: Add documentation of Arm 'mainstone' board Peter Maydell
@ 2021-07-22 17:52 ` Peter Maydell
  2021-07-22 17:52 ` [PATCH for-6.1 3/3] docs: Add documentation of Arm 'imx25-pdk' board Peter Maydell
  2021-07-22 20:18 ` [PATCH for-6.1 0/3] docs: Document arm mainstone, kzm, imx25-pdk Richard Henderson
  3 siblings, 0 replies; 5+ messages in thread
From: Peter Maydell @ 2021-07-22 17:52 UTC (permalink / raw)
  To: qemu-arm, qemu-devel; +Cc: Jean-Christophe Dubois

Add brief documentation of the Arm 'kzm' board.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
 docs/system/arm/kzm.rst    | 18 ++++++++++++++++++
 docs/system/target-arm.rst |  1 +
 MAINTAINERS                |  1 +
 3 files changed, 20 insertions(+)
 create mode 100644 docs/system/arm/kzm.rst

diff --git a/docs/system/arm/kzm.rst b/docs/system/arm/kzm.rst
new file mode 100644
index 00000000000..bb018fbdf7c
--- /dev/null
+++ b/docs/system/arm/kzm.rst
@@ -0,0 +1,18 @@
+Kyoto Microcomputer KZM-ARM11-01 (``kzm``)
+==========================================
+
+The ``kzm`` board emulates the Kyoto Microcomputer KZM-ARM11-01
+evaluation board, which is based on an NXP i.MX32 SoC
+which uses an ARM1136 CPU.
+
+Emulated devices:
+
+- UARTs
+- LAN9118 ethernet
+- AVIC
+- CCM
+- GPT
+- EPIT timers
+- I2C
+- GPIO controllers
+- Watchdog timer
diff --git a/docs/system/target-arm.rst b/docs/system/target-arm.rst
index ad3f5f435d6..d423782d661 100644
--- a/docs/system/target-arm.rst
+++ b/docs/system/target-arm.rst
@@ -91,6 +91,7 @@ undocumented; you can get a complete list by running
    arm/musicpal
    arm/gumstix
    arm/mainstone
+   arm/kzm
    arm/nrf
    arm/nseries
    arm/nuvoton
diff --git a/MAINTAINERS b/MAINTAINERS
index 47ddcbb7f7a..063d8e07b75 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -694,6 +694,7 @@ F: hw/*/imx_*
 F: hw/*/*imx31*
 F: include/hw/*/imx_*
 F: include/hw/*/*imx31*
+F: docs/system/arm/kzm.rst
 
 Integrator CP
 M: Peter Maydell <peter.maydell@linaro.org>
-- 
2.20.1



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

* [PATCH for-6.1 3/3] docs: Add documentation of Arm 'imx25-pdk' board
  2021-07-22 17:52 [PATCH for-6.1 0/3] docs: Document arm mainstone, kzm, imx25-pdk Peter Maydell
  2021-07-22 17:52 ` [PATCH for-6.1 1/3] docs: Add documentation of Arm 'mainstone' board Peter Maydell
  2021-07-22 17:52 ` [PATCH for-6.1 2/3] docs: Add documentation of Arm 'kzm' board Peter Maydell
@ 2021-07-22 17:52 ` Peter Maydell
  2021-07-22 20:18 ` [PATCH for-6.1 0/3] docs: Document arm mainstone, kzm, imx25-pdk Richard Henderson
  3 siblings, 0 replies; 5+ messages in thread
From: Peter Maydell @ 2021-07-22 17:52 UTC (permalink / raw)
  To: qemu-arm, qemu-devel; +Cc: Jean-Christophe Dubois

Add brief documentation of the Arm 'imx25-pdk' board.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
 docs/system/arm/imx25-pdk.rst | 19 +++++++++++++++++++
 docs/system/target-arm.rst    |  1 +
 MAINTAINERS                   |  1 +
 3 files changed, 21 insertions(+)
 create mode 100644 docs/system/arm/imx25-pdk.rst

diff --git a/docs/system/arm/imx25-pdk.rst b/docs/system/arm/imx25-pdk.rst
new file mode 100644
index 00000000000..2a9711e8a79
--- /dev/null
+++ b/docs/system/arm/imx25-pdk.rst
@@ -0,0 +1,19 @@
+NXP i.MX25 PDK board (``imx25-pdk``)
+====================================
+
+The ``imx25-pdk`` board emulates the NXP i.MX25 Product Development Kit
+board, which is based on an i.MX25 SoC which uses an ARM926 CPU.
+
+Emulated devices:
+
+- SD controller
+- AVIC
+- CCM
+- GPT
+- EPIT timers
+- FEC
+- RNGC
+- I2C
+- GPIO controllers
+- Watchdog timer
+- USB controllers
diff --git a/docs/system/target-arm.rst b/docs/system/target-arm.rst
index d423782d661..91ebc26c6db 100644
--- a/docs/system/target-arm.rst
+++ b/docs/system/target-arm.rst
@@ -95,6 +95,7 @@ undocumented; you can get a complete list by running
    arm/nrf
    arm/nseries
    arm/nuvoton
+   arm/imx25-pdk
    arm/orangepi
    arm/palm
    arm/raspi
diff --git a/MAINTAINERS b/MAINTAINERS
index 063d8e07b75..2ea17d68f6e 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -684,6 +684,7 @@ F: hw/watchdog/wdt_imx2.c
 F: include/hw/arm/fsl-imx25.h
 F: include/hw/misc/imx25_ccm.h
 F: include/hw/watchdog/wdt_imx2.h
+F: docs/system/arm/imx25-pdk.rst
 
 i.MX31 (kzm)
 M: Peter Maydell <peter.maydell@linaro.org>
-- 
2.20.1



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

* Re: [PATCH for-6.1 0/3] docs: Document arm mainstone, kzm, imx25-pdk
  2021-07-22 17:52 [PATCH for-6.1 0/3] docs: Document arm mainstone, kzm, imx25-pdk Peter Maydell
                   ` (2 preceding siblings ...)
  2021-07-22 17:52 ` [PATCH for-6.1 3/3] docs: Add documentation of Arm 'imx25-pdk' board Peter Maydell
@ 2021-07-22 20:18 ` Richard Henderson
  3 siblings, 0 replies; 5+ messages in thread
From: Richard Henderson @ 2021-07-22 20:18 UTC (permalink / raw)
  To: Peter Maydell, qemu-arm, qemu-devel; +Cc: Jean-Christophe Dubois

On 7/22/21 7:52 AM, Peter Maydell wrote:
> Peter Maydell (3):
>    docs: Add documentation of Arm 'mainstone' board
>    docs: Add documentation of Arm 'kzm' board
>    docs: Add documentation of Arm 'imx25-pdk' board

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~


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

end of thread, other threads:[~2021-07-22 20:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-22 17:52 [PATCH for-6.1 0/3] docs: Document arm mainstone, kzm, imx25-pdk Peter Maydell
2021-07-22 17:52 ` [PATCH for-6.1 1/3] docs: Add documentation of Arm 'mainstone' board Peter Maydell
2021-07-22 17:52 ` [PATCH for-6.1 2/3] docs: Add documentation of Arm 'kzm' board Peter Maydell
2021-07-22 17:52 ` [PATCH for-6.1 3/3] docs: Add documentation of Arm 'imx25-pdk' board Peter Maydell
2021-07-22 20:18 ` [PATCH for-6.1 0/3] docs: Document arm mainstone, kzm, imx25-pdk Richard Henderson

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).