DistroKit Mailinglist
 help / color / mirror / Atom feed
* [DistroKit] [PATCH v1 1/2] platform-v7a: kernel: enable AT803X_PHY
@ 2020-03-06  7:01 Oleksij Rempel
  2020-03-06  7:01 ` [DistroKit] [PATCH v1 2/2] platform-v7a: kernel: disable DEBUG_GPIO Oleksij Rempel
  2020-03-06  7:08 ` [DistroKit] [PATCH v1 1/2] platform-v7a: kernel: enable AT803X_PHY Robert Schwebel
  0 siblings, 2 replies; 4+ messages in thread
From: Oleksij Rempel @ 2020-03-06  7:01 UTC (permalink / raw)
  To: distrokit; +Cc: Oleksij Rempel

It is used on RIoTBoard and MarS Board

Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
---
 configs/platform-v7a/kernelconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configs/platform-v7a/kernelconfig b/configs/platform-v7a/kernelconfig
index 4e62eae..c3651b9 100644
--- a/configs/platform-v7a/kernelconfig
+++ b/configs/platform-v7a/kernelconfig
@@ -1460,7 +1460,7 @@ CONFIG_FIXED_PHY=y
 # CONFIG_MICROCHIP_T1_PHY is not set
 # CONFIG_MICROSEMI_PHY is not set
 # CONFIG_NATIONAL_PHY is not set
-# CONFIG_AT803X_PHY is not set
+CONFIG_AT803X_PHY=y
 # CONFIG_QSEMI_PHY is not set
 CONFIG_REALTEK_PHY=y
 # CONFIG_RENESAS_PHY is not set
-- 
2.25.1


_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

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

* [DistroKit] [PATCH v1 2/2] platform-v7a: kernel: disable DEBUG_GPIO
  2020-03-06  7:01 [DistroKit] [PATCH v1 1/2] platform-v7a: kernel: enable AT803X_PHY Oleksij Rempel
@ 2020-03-06  7:01 ` Oleksij Rempel
  2020-03-06  7:08   ` Robert Schwebel
  2020-03-06  7:08 ` [DistroKit] [PATCH v1 1/2] platform-v7a: kernel: enable AT803X_PHY Robert Schwebel
  1 sibling, 1 reply; 4+ messages in thread
From: Oleksij Rempel @ 2020-03-06  7:01 UTC (permalink / raw)
  To: distrokit; +Cc: Oleksij Rempel

it is useful only for development of kernel gpio controller and produces
lots of dbug messages on each kernel boot:
[    0.210511] gpio gpiochip0: (209c000.gpio): created GPIO range 18->18
==> 20e0000.iomuxc PIN 184->184
[    0.210527] gpio gpiochip0: (209c000.gpio): created GPIO range 19->19
==> 20e0000.iomuxc PIN 187->187
[    0.210545] gpio gpiochip0: (209c000.gpio): created GPIO range 20->20
==> 20e0000.iomuxc PIN 183->183
[    0.210561] gpio gpiochip0: (209c000.gpio): created GPIO range 21->21
==> 20e0000.iomuxc PIN 188->188
[    0.210578] gpio gpiochip0: (209c000.gpio): created GPIO range 22->24
==> 20e0000.iomuxc PIN 123->125
[    0.210597] gpio gpiochip0: (209c000.gpio): created GPIO range 25->25
==> 20e0000.iomuxc PIN 121->121

Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
---
 configs/platform-v7a/kernelconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configs/platform-v7a/kernelconfig b/configs/platform-v7a/kernelconfig
index c3651b9..4614119 100644
--- a/configs/platform-v7a/kernelconfig
+++ b/configs/platform-v7a/kernelconfig
@@ -1811,7 +1811,7 @@ CONFIG_GPIOLIB=y
 CONFIG_GPIOLIB_FASTPATH_LIMIT=512
 CONFIG_OF_GPIO=y
 CONFIG_GPIOLIB_IRQCHIP=y
-CONFIG_DEBUG_GPIO=y
+# CONFIG_DEBUG_GPIO is not set
 CONFIG_GPIO_SYSFS=y
 CONFIG_GPIO_GENERIC=y
 
-- 
2.25.1


_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

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

* Re: [DistroKit] [PATCH v1 1/2] platform-v7a: kernel: enable AT803X_PHY
  2020-03-06  7:01 [DistroKit] [PATCH v1 1/2] platform-v7a: kernel: enable AT803X_PHY Oleksij Rempel
  2020-03-06  7:01 ` [DistroKit] [PATCH v1 2/2] platform-v7a: kernel: disable DEBUG_GPIO Oleksij Rempel
@ 2020-03-06  7:08 ` Robert Schwebel
  1 sibling, 0 replies; 4+ messages in thread
From: Robert Schwebel @ 2020-03-06  7:08 UTC (permalink / raw)
  To: Oleksij Rempel; +Cc: distrokit

On Fri, Mar 06, 2020 at 08:01:38AM +0100, Oleksij Rempel wrote:
> It is used on RIoTBoard and MarS Board
> 
> Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
> ---
>  configs/platform-v7a/kernelconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to next.

rsc
-- 
Pengutronix e.K.                           | Dipl.-Ing. Robert Schwebel  |
Steuerwalder Str. 21                       | https://www.pengutronix.de/ |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

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

* Re: [DistroKit] [PATCH v1 2/2] platform-v7a: kernel: disable DEBUG_GPIO
  2020-03-06  7:01 ` [DistroKit] [PATCH v1 2/2] platform-v7a: kernel: disable DEBUG_GPIO Oleksij Rempel
@ 2020-03-06  7:08   ` Robert Schwebel
  0 siblings, 0 replies; 4+ messages in thread
From: Robert Schwebel @ 2020-03-06  7:08 UTC (permalink / raw)
  To: Oleksij Rempel; +Cc: distrokit

On Fri, Mar 06, 2020 at 08:01:39AM +0100, Oleksij Rempel wrote:
> it is useful only for development of kernel gpio controller and produces
> lots of dbug messages on each kernel boot:
> [    0.210511] gpio gpiochip0: (209c000.gpio): created GPIO range 18->18
> ==> 20e0000.iomuxc PIN 184->184
> [    0.210527] gpio gpiochip0: (209c000.gpio): created GPIO range 19->19
> ==> 20e0000.iomuxc PIN 187->187
> [    0.210545] gpio gpiochip0: (209c000.gpio): created GPIO range 20->20
> ==> 20e0000.iomuxc PIN 183->183
> [    0.210561] gpio gpiochip0: (209c000.gpio): created GPIO range 21->21
> ==> 20e0000.iomuxc PIN 188->188
> [    0.210578] gpio gpiochip0: (209c000.gpio): created GPIO range 22->24
> ==> 20e0000.iomuxc PIN 123->125
> [    0.210597] gpio gpiochip0: (209c000.gpio): created GPIO range 25->25
> ==> 20e0000.iomuxc PIN 121->121
> 
> Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
> ---
>  configs/platform-v7a/kernelconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to next.

rsc
-- 
Pengutronix e.K.                           | Dipl.-Ing. Robert Schwebel  |
Steuerwalder Str. 21                       | https://www.pengutronix.de/ |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

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

end of thread, other threads:[~2020-03-06  7:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-06  7:01 [DistroKit] [PATCH v1 1/2] platform-v7a: kernel: enable AT803X_PHY Oleksij Rempel
2020-03-06  7:01 ` [DistroKit] [PATCH v1 2/2] platform-v7a: kernel: disable DEBUG_GPIO Oleksij Rempel
2020-03-06  7:08   ` Robert Schwebel
2020-03-06  7:08 ` [DistroKit] [PATCH v1 1/2] platform-v7a: kernel: enable AT803X_PHY Robert Schwebel

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