linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] ARM: dts: aspeed: bletchley: Update Bletchley BMC devicetree
@ 2022-09-29  1:31 Potin Lai
  2022-09-29  1:31 ` [PATCH 1/2] ARM: dts: aspeed: bletchley: update and fix gpio-line-names Potin Lai
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Potin Lai @ 2022-09-29  1:31 UTC (permalink / raw)
  To: Rob Herring, Joel Stanley, Andrew Jeffery
  Cc: devicetree, linux-arm-kernel, linux-aspeed, linux-kernel,
	Patrick Williams, Potin Lai, Potin Lai

Update Facebook Bletchley BMC devicetree base on Pre-PVT HW design.

Potin Lai (2):
  ARM: dts: aspeed: bletchley: update and fix gpio-line-names
  ARM: dts: aspeed: bletchley: enable emmc and ehci1

 .../boot/dts/aspeed-bmc-facebook-bletchley.dts   | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

-- 
2.31.1


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

* [PATCH 1/2] ARM: dts: aspeed: bletchley: update and fix gpio-line-names
  2022-09-29  1:31 [PATCH 0/2] ARM: dts: aspeed: bletchley: Update Bletchley BMC devicetree Potin Lai
@ 2022-09-29  1:31 ` Potin Lai
  2022-09-29  1:31 ` [PATCH 2/2] ARM: dts: aspeed: bletchley: enable emmc and ehci1 Potin Lai
  2022-10-05 18:20 ` [PATCH 0/2] ARM: dts: aspeed: bletchley: Update Bletchley BMC devicetree Patrick Williams
  2 siblings, 0 replies; 4+ messages in thread
From: Potin Lai @ 2022-09-29  1:31 UTC (permalink / raw)
  To: Rob Herring, Joel Stanley, Andrew Jeffery
  Cc: devicetree, linux-arm-kernel, linux-aspeed, linux-kernel,
	Patrick Williams, Potin Lai, Potin Lai

Update new GPIOM7 line name, and fixed typo of GPION6 line name

New GPIO:
- GPIOM7: USB_DEBUG_PWR_BTN_N

Fixed GPIO:
- GPION6: LED_POSTCODE_5 --> LED_POSTCODE_6

Signed-off-by: Potin Lai <potin.lai.pt@gmail.com>
---
 arch/arm/boot/dts/aspeed-bmc-facebook-bletchley.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/aspeed-bmc-facebook-bletchley.dts b/arch/arm/boot/dts/aspeed-bmc-facebook-bletchley.dts
index 1f72017c1e2d9..f5986f5909cd0 100644
--- a/arch/arm/boot/dts/aspeed-bmc-facebook-bletchley.dts
+++ b/arch/arm/boot/dts/aspeed-bmc-facebook-bletchley.dts
@@ -984,11 +984,11 @@ &gpio0 {
 	/*M0-M7*/	"ALERT_SLED1_N","ALERT_SLED2_N",
 			"ALERT_SLED3_N","ALERT_SLED4_N",
 			"ALERT_SLED5_N","ALERT_SLED6_N",
-			"","",
+			"","USB_DEBUG_PWR_BTN_N",
 	/*N0-N7*/	"LED_POSTCODE_0","LED_POSTCODE_1",
 			"LED_POSTCODE_2","LED_POSTCODE_3",
 			"LED_POSTCODE_4","LED_POSTCODE_5",
-			"LED_POSTCODE_5","LED_POSTCODE_7",
+			"LED_POSTCODE_6","LED_POSTCODE_7",
 	/*O0-O7*/	"","","","",
 			"","BOARD_ID0","BOARD_ID1","BOARD_ID2",
 	/*P0-P7*/	"","","","","","","","BMC_HEARTBEAT",
-- 
2.31.1


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

* [PATCH 2/2] ARM: dts: aspeed: bletchley: enable emmc and ehci1
  2022-09-29  1:31 [PATCH 0/2] ARM: dts: aspeed: bletchley: Update Bletchley BMC devicetree Potin Lai
  2022-09-29  1:31 ` [PATCH 1/2] ARM: dts: aspeed: bletchley: update and fix gpio-line-names Potin Lai
@ 2022-09-29  1:31 ` Potin Lai
  2022-10-05 18:20 ` [PATCH 0/2] ARM: dts: aspeed: bletchley: Update Bletchley BMC devicetree Patrick Williams
  2 siblings, 0 replies; 4+ messages in thread
From: Potin Lai @ 2022-09-29  1:31 UTC (permalink / raw)
  To: Rob Herring, Joel Stanley, Andrew Jeffery
  Cc: devicetree, linux-arm-kernel, linux-aspeed, linux-kernel,
	Patrick Williams, Potin Lai, Potin Lai

Enable both emmc-controller and emmc nodes for storage soultion on
bletchley, and enable ehci1 node as second storage plan.

Signed-off-by: Potin Lai <potin.lai.pt@gmail.com>
---
 arch/arm/boot/dts/aspeed-bmc-facebook-bletchley.dts | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/arch/arm/boot/dts/aspeed-bmc-facebook-bletchley.dts b/arch/arm/boot/dts/aspeed-bmc-facebook-bletchley.dts
index f5986f5909cd0..a619eec70633a 100644
--- a/arch/arm/boot/dts/aspeed-bmc-facebook-bletchley.dts
+++ b/arch/arm/boot/dts/aspeed-bmc-facebook-bletchley.dts
@@ -1046,6 +1046,18 @@ &ehci0 {
 	status = "okay";
 };
 
+&ehci1 {
+	status = "okay";
+};
+
+&emmc_controller {
+	status = "okay";
+};
+
+&emmc {
+	status = "okay";
+};
+
 &pinctrl {
 	pinctrl_gpiov2_unbiased_default: gpiov2 {
 		pins = "AD14";
-- 
2.31.1


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

* Re: [PATCH 0/2] ARM: dts: aspeed: bletchley: Update Bletchley BMC devicetree
  2022-09-29  1:31 [PATCH 0/2] ARM: dts: aspeed: bletchley: Update Bletchley BMC devicetree Potin Lai
  2022-09-29  1:31 ` [PATCH 1/2] ARM: dts: aspeed: bletchley: update and fix gpio-line-names Potin Lai
  2022-09-29  1:31 ` [PATCH 2/2] ARM: dts: aspeed: bletchley: enable emmc and ehci1 Potin Lai
@ 2022-10-05 18:20 ` Patrick Williams
  2 siblings, 0 replies; 4+ messages in thread
From: Patrick Williams @ 2022-10-05 18:20 UTC (permalink / raw)
  To: Potin Lai
  Cc: Rob Herring, Joel Stanley, Andrew Jeffery, devicetree,
	linux-arm-kernel, linux-aspeed, linux-kernel, Potin Lai

[-- Attachment #1: Type: text/plain, Size: 509 bytes --]

On Thu, Sep 29, 2022 at 09:31:28AM +0800, Potin Lai wrote:
> Update Facebook Bletchley BMC devicetree base on Pre-PVT HW design.
> 
> Potin Lai (2):
>   ARM: dts: aspeed: bletchley: update and fix gpio-line-names
>   ARM: dts: aspeed: bletchley: enable emmc and ehci1
> 
>  .../boot/dts/aspeed-bmc-facebook-bletchley.dts   | 16 ++++++++++++++--
>  1 file changed, 14 insertions(+), 2 deletions(-)
> 
> -- 
> 2.31.1
> 

Reviewed-by: Patrick Williams <patrick@stwcx.xyz>

-- 
Patrick Williams

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2022-10-05 18:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-29  1:31 [PATCH 0/2] ARM: dts: aspeed: bletchley: Update Bletchley BMC devicetree Potin Lai
2022-09-29  1:31 ` [PATCH 1/2] ARM: dts: aspeed: bletchley: update and fix gpio-line-names Potin Lai
2022-09-29  1:31 ` [PATCH 2/2] ARM: dts: aspeed: bletchley: enable emmc and ehci1 Potin Lai
2022-10-05 18:20 ` [PATCH 0/2] ARM: dts: aspeed: bletchley: Update Bletchley BMC devicetree Patrick Williams

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