All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Álvaro Fernández Rojas" <noltari@gmail.com>
To: mturquette@baylibre.com, sboyd@kernel.org, f.fainelli@gmail.com,
	bcm-kernel-feedback-list@broadcom.com, robh+dt@kernel.org,
	julia.lawall@lip6.fr, jonas.gorski@gmail.com, lkp@intel.com,
	linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org
Cc: "Álvaro Fernández Rojas" <noltari@gmail.com>
Subject: [PATCH 6/8] mips: bmips: add BCM6368 clock definitions
Date: Mon, 15 Jun 2020 11:02:29 +0200	[thread overview]
Message-ID: <20200615090231.2932696-7-noltari@gmail.com> (raw)
In-Reply-To: <20200615090231.2932696-1-noltari@gmail.com>

Add header with BCM6368 definitions in order to be able to include it from
device tree files.

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
---
 include/dt-bindings/clock/bcm6368-clock.h | 24 +++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 include/dt-bindings/clock/bcm6368-clock.h

diff --git a/include/dt-bindings/clock/bcm6368-clock.h b/include/dt-bindings/clock/bcm6368-clock.h
new file mode 100644
index 000000000000..f161d5333883
--- /dev/null
+++ b/include/dt-bindings/clock/bcm6368-clock.h
@@ -0,0 +1,24 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+
+#ifndef __DT_BINDINGS_CLOCK_BCM6368_H
+#define __DT_BINDINGS_CLOCK_BCM6368_H
+
+#define BCM6368_CLK_VDSL_QPROC		2
+#define BCM6368_CLK_VDSL_AFE		3
+#define BCM6368_CLK_VDSL_BONDING	4
+#define BCM6368_CLK_VDSL		5
+#define BCM6368_CLK_PHYMIPS		6
+#define BCM6368_CLK_SWPKT_USB		7
+#define BCM6368_CLK_SWPKT_SAR		8
+#define BCM6368_CLK_SPI			9
+#define BCM6368_CLK_USBD		10
+#define BCM6368_CLK_SAR			11
+#define BCM6368_CLK_ROBOSW		12
+#define BCM6368_CLK_UTOPIA		13
+#define BCM6368_CLK_PCM			14
+#define BCM6368_CLK_USBH		15
+#define BCM6368_CLK_DIS_GLESS		16
+#define BCM6368_CLK_NAND		17
+#define BCM6368_CLK_IPSEC		18
+
+#endif /* __DT_BINDINGS_CLOCK_BCM6368_H */
-- 
2.27.0


WARNING: multiple messages have this Message-ID (diff)
From: "Álvaro Fernández Rojas" <noltari@gmail.com>
To: mturquette@baylibre.com, sboyd@kernel.org, f.fainelli@gmail.com,
	bcm-kernel-feedback-list@broadcom.com, robh+dt@kernel.org,
	julia.lawall@lip6.fr, jonas.gorski@gmail.com, lkp@intel.com,
	linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org
Cc: "Álvaro Fernández Rojas" <noltari@gmail.com>
Subject: [PATCH 6/8] mips: bmips: add BCM6368 clock definitions
Date: Mon, 15 Jun 2020 11:02:29 +0200	[thread overview]
Message-ID: <20200615090231.2932696-7-noltari@gmail.com> (raw)
In-Reply-To: <20200615090231.2932696-1-noltari@gmail.com>

Add header with BCM6368 definitions in order to be able to include it from
device tree files.

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
---
 include/dt-bindings/clock/bcm6368-clock.h | 24 +++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 include/dt-bindings/clock/bcm6368-clock.h

diff --git a/include/dt-bindings/clock/bcm6368-clock.h b/include/dt-bindings/clock/bcm6368-clock.h
new file mode 100644
index 000000000000..f161d5333883
--- /dev/null
+++ b/include/dt-bindings/clock/bcm6368-clock.h
@@ -0,0 +1,24 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+
+#ifndef __DT_BINDINGS_CLOCK_BCM6368_H
+#define __DT_BINDINGS_CLOCK_BCM6368_H
+
+#define BCM6368_CLK_VDSL_QPROC		2
+#define BCM6368_CLK_VDSL_AFE		3
+#define BCM6368_CLK_VDSL_BONDING	4
+#define BCM6368_CLK_VDSL		5
+#define BCM6368_CLK_PHYMIPS		6
+#define BCM6368_CLK_SWPKT_USB		7
+#define BCM6368_CLK_SWPKT_SAR		8
+#define BCM6368_CLK_SPI			9
+#define BCM6368_CLK_USBD		10
+#define BCM6368_CLK_SAR			11
+#define BCM6368_CLK_ROBOSW		12
+#define BCM6368_CLK_UTOPIA		13
+#define BCM6368_CLK_PCM			14
+#define BCM6368_CLK_USBH		15
+#define BCM6368_CLK_DIS_GLESS		16
+#define BCM6368_CLK_NAND		17
+#define BCM6368_CLK_IPSEC		18
+
+#endif /* __DT_BINDINGS_CLOCK_BCM6368_H */
-- 
2.27.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2020-06-15  9:03 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-15  9:02 [PATCH 0/8] clk: bcm63xx-gate: introduce dt-bindings definitions Álvaro Fernández Rojas
2020-06-15  9:02 ` Álvaro Fernández Rojas
2020-06-15  9:02 ` [PATCH 1/8] mips: bmips: add BCM3368 clock definitions Álvaro Fernández Rojas
2020-06-15  9:02   ` Álvaro Fernández Rojas
2020-06-17 21:38   ` Florian Fainelli
2020-06-17 21:38     ` Florian Fainelli
2020-06-20  0:04   ` Stephen Boyd
2020-06-15  9:02 ` [PATCH 2/8] mips: bmips: add BCM6318 " Álvaro Fernández Rojas
2020-06-15  9:02   ` Álvaro Fernández Rojas
2020-06-17 21:39   ` Florian Fainelli
2020-06-17 21:39     ` Florian Fainelli
2020-06-20  0:04   ` Stephen Boyd
2020-06-15  9:02 ` [PATCH 3/8] mips: bmips: add BCM6328 " Álvaro Fernández Rojas
2020-06-15  9:02   ` Álvaro Fernández Rojas
2020-06-17 21:39   ` Florian Fainelli
2020-06-17 21:39     ` Florian Fainelli
2020-06-20  0:04   ` Stephen Boyd
2020-06-15  9:02 ` [PATCH 4/8] mips: bmips: add BCM6358 " Álvaro Fernández Rojas
2020-06-15  9:02   ` Álvaro Fernández Rojas
2020-06-17 21:39   ` Florian Fainelli
2020-06-17 21:39     ` Florian Fainelli
2020-06-20  0:04   ` Stephen Boyd
2020-06-15  9:02 ` [PATCH 5/8] mips: bmips: add BCM6362 " Álvaro Fernández Rojas
2020-06-15  9:02   ` Álvaro Fernández Rojas
2020-06-17 21:40   ` Florian Fainelli
2020-06-17 21:40     ` Florian Fainelli
2020-06-20  0:04   ` Stephen Boyd
2020-06-20  0:05   ` Stephen Boyd
2020-06-15  9:02 ` Álvaro Fernández Rojas [this message]
2020-06-15  9:02   ` [PATCH 6/8] mips: bmips: add BCM6368 " Álvaro Fernández Rojas
2020-06-17 21:40   ` Florian Fainelli
2020-06-17 21:40     ` Florian Fainelli
2020-06-20  0:05   ` Stephen Boyd
2020-06-15  9:02 ` [PATCH 7/8] mips: bmips: add BCM63268 " Álvaro Fernández Rojas
2020-06-15  9:02   ` Álvaro Fernández Rojas
2020-06-17 21:40   ` Florian Fainelli
2020-06-17 21:40     ` Florian Fainelli
2020-06-20  0:05   ` Stephen Boyd
2020-06-15  9:02 ` [PATCH 8/8] clk: bcm63xx-gate: switch to dt-bindings definitions Álvaro Fernández Rojas
2020-06-15  9:02   ` Álvaro Fernández Rojas
2020-06-17 21:40   ` Florian Fainelli
2020-06-17 21:40     ` Florian Fainelli
2020-06-20  0:05   ` Stephen Boyd

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=20200615090231.2932696-7-noltari@gmail.com \
    --to=noltari@gmail.com \
    --cc=bcm-kernel-feedback-list@broadcom.com \
    --cc=devicetree@vger.kernel.org \
    --cc=f.fainelli@gmail.com \
    --cc=jonas.gorski@gmail.com \
    --cc=julia.lawall@lip6.fr \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lkp@intel.com \
    --cc=mturquette@baylibre.com \
    --cc=robh+dt@kernel.org \
    --cc=sboyd@kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.