mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
To: Chris Packham <chris.packham@alliedtelesis.co.nz>
Cc: tglx@linutronix.de, robh@kernel.org, krzk+dt@kernel.org,
	conor+dt@kernel.org, daniel.lezcano@linaro.org,
	paulburton@kernel.org, peterz@infradead.org,
	mail@birger-koblitz.de, bert@biot.com, john@phrozen.org,
	sander@svanheule.net, linux-kernel@vger.kernel.org,
	devicetree@vger.kernel.org, linux-mips@vger.kernel.org,
	kabel@kernel.org, ericwouds@gmail.com
Subject: Re: [PATCH v5 00/10] mips: Support for RTL9302C
Date: Fri, 12 Jul 2024 13:20:56 +0200	[thread overview]
Message-ID: <ZpERmHxcqF/gQRTi@alpha.franken.de> (raw)
In-Reply-To: <20240710043524.1535151-1-chris.packham@alliedtelesis.co.nz>

On Wed, Jul 10, 2024 at 04:35:14PM +1200, Chris Packham wrote:
> This series adds basic support for the RTL9302C reference board. Currently the
> focus is on the CPU block stuff. I hope to get around to the DSA switch driver
> eventually but this is a small start that lets me boot a mainline kernel on the
> board I have. I initialiy started with code from openwrt but have paired it
> down to just the clocksource driver and devicetree.
> 
> The first two patches in this series are fixing some complaints from make
> dtbs_check for some existing realtek dts files. They can be applied on their
> own if desired.
> 
> Chris Packham (10):
>   mips: dts: realtek: use "serial" instead of "uart" in node name
>   mips: dts: realtek: add device_type property to cpu node
>   dt-bindings: vendor-prefixes: Add Cameo Communications
>   dt-bindings: mips: realtek: Add rtl930x-soc compatible
>   dt-bindings: timer: Add schema for realtek,otto-timer
>   dt-bindings: interrupt-controller: realtek,rtl-intc: Add rtl9300-intc
>   clocksource: realtek: Add timer driver for rtl-otto platforms
>   mips: select REALTEK_OTTO_TIMER for Realtek platforms
>   mips: generic: add fdt fixup for Realtek reference board
>   mips: dts: realtek: Add RTL9302C board
> 
>  .../realtek,rtl-intc.yaml                     |  20 +-
>  .../devicetree/bindings/mips/realtek-rtl.yaml |   4 +
>  .../bindings/timer/realtek,otto-timer.yaml    |  63 ++++
>  .../devicetree/bindings/vendor-prefixes.yaml  |   2 +
>  arch/mips/Kconfig                             |   1 +
>  arch/mips/boot/dts/realtek/Makefile           |   1 +
>  .../cameo-rtl9302c-2x-rtl8224-2xge.dts        |  73 +++++
>  arch/mips/boot/dts/realtek/rtl838x.dtsi       |   1 +
>  arch/mips/boot/dts/realtek/rtl83xx.dtsi       |   4 +-
>  arch/mips/boot/dts/realtek/rtl930x.dtsi       |  79 +++++
>  arch/mips/generic/Makefile                    |   1 +
>  arch/mips/generic/board-realtek.c             |  79 +++++
>  drivers/clocksource/Kconfig                   |  10 +
>  drivers/clocksource/Makefile                  |   1 +
>  drivers/clocksource/timer-rtl-otto.c          | 291 ++++++++++++++++++
>  include/linux/cpuhotplug.h                    |   1 +
>  16 files changed, 628 insertions(+), 3 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/timer/realtek,otto-timer.yaml
>  create mode 100644 arch/mips/boot/dts/realtek/cameo-rtl9302c-2x-rtl8224-2xge.dts
>  create mode 100644 arch/mips/boot/dts/realtek/rtl930x.dtsi
>  create mode 100644 arch/mips/generic/board-realtek.c
>  create mode 100644 drivers/clocksource/timer-rtl-otto.c

applied patch 1-4, 6 and 8-10 to mips-next.

Thomas.

-- 
Crap can work. Given enough thrust pigs will fly, but it's not necessarily a
good idea.                                                [ RFC1925, 2.3 ]

      parent reply	other threads:[~2024-07-12 11:23 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-10  4:35 Chris Packham
2024-07-10  4:35 ` [PATCH v5 01/10] mips: dts: realtek: use "serial" instead of "uart" in node name Chris Packham
2024-07-10  4:35 ` [PATCH v5 02/10] mips: dts: realtek: add device_type property to cpu node Chris Packham
2024-07-10  4:35 ` [PATCH v5 03/10] dt-bindings: vendor-prefixes: Add Cameo Communications Chris Packham
2024-07-10  4:35 ` [PATCH v5 04/10] dt-bindings: mips: realtek: Add rtl930x-soc compatible Chris Packham
2024-07-10  4:35 ` [PATCH v5 05/10] dt-bindings: timer: Add schema for realtek,otto-timer Chris Packham
2024-07-10  8:20   ` Daniel Lezcano
2024-07-13 10:16   ` [tip: timers/core] " tip-bot2 for Chris Packham
2024-07-10  4:35 ` [PATCH v5 06/10] dt-bindings: interrupt-controller: realtek,rtl-intc: Add rtl9300-intc Chris Packham
2024-07-11 21:13   ` Rob Herring (Arm)
2024-07-10  4:35 ` [PATCH v5 07/10] clocksource: realtek: Add timer driver for rtl-otto platforms Chris Packham
2024-07-10  8:21   ` Daniel Lezcano
2024-07-13 10:16   ` [tip: timers/core] clocksource/drivers/realtek: " tip-bot2 for Chris Packham
2024-07-10  4:35 ` [PATCH v5 08/10] mips: select REALTEK_OTTO_TIMER for Realtek platforms Chris Packham
2024-07-10  4:35 ` [PATCH v5 09/10] mips: generic: add fdt fixup for Realtek reference board Chris Packham
2024-07-10  4:35 ` [PATCH v5 10/10] mips: dts: realtek: Add RTL9302C board Chris Packham
2024-07-12 11:20 ` Thomas Bogendoerfer [this message]

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=ZpERmHxcqF/gQRTi@alpha.franken.de \
    --to=tsbogend@alpha.franken.de \
    --cc=bert@biot.com \
    --cc=chris.packham@alliedtelesis.co.nz \
    --cc=conor+dt@kernel.org \
    --cc=daniel.lezcano@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=ericwouds@gmail.com \
    --cc=john@phrozen.org \
    --cc=kabel@kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=mail@birger-koblitz.de \
    --cc=paulburton@kernel.org \
    --cc=peterz@infradead.org \
    --cc=robh@kernel.org \
    --cc=sander@svanheule.net \
    --cc=tglx@linutronix.de \
    /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

all inboxes | Powered by JetHome®