Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1345798 > unrolled thread
| Started by | Laxman Dewangan <ldewangan@nvidia.com> |
|---|---|
| First post | 2016-02-29 14:20 +0100 |
| Last post | 2016-03-01 18:50 +0100 |
| Articles | 4 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH 1/1] arm64: defconfig: Enable Maxim PMIC max77620 config Laxman Dewangan <ldewangan@nvidia.com> - 2016-02-29 14:20 +0100
Re: [PATCH 1/1] arm64: defconfig: Enable Maxim PMIC max77620 config Arnd Bergmann <arnd@arndb.de> - 2016-03-01 00:40 +0100
Re: [PATCH 1/1] arm64: defconfig: Enable Maxim PMIC max77620 config Laxman Dewangan <ldewangan@nvidia.com> - 2016-03-01 13:00 +0100
Re: [PATCH 1/1] arm64: defconfig: Enable Maxim PMIC max77620 config Thierry Reding <treding@nvidia.com> - 2016-03-01 18:50 +0100
| From | Laxman Dewangan <ldewangan@nvidia.com> |
|---|---|
| Date | 2016-02-29 14:20 +0100 |
| Subject | [PATCH 1/1] arm64: defconfig: Enable Maxim PMIC max77620 config |
| Message-ID | <r7vTX-3v4-9@gated-at.bofh.it> |
Enable following configs for the Maxim Semiconductor's PMIC MAX77620/MAX20024. This is used on NVIDIA's Tegra 210 platform Jetson-TX1. CONFIG_MFD_MAX77620 For MFD driver. CONFIG_PINCTRL_MAX77620 For pin control support CONFIG_GPIO_MAX77620 for GPIO Support. CONFIG_REGULATOR_MAX77620 for regulator support. CONFIG_RTC_DRV_MAX77686 for RTC support. Enable Tegra I2C config to enable I2C in NVIDIA's Tegra 210 platforms. Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> --- The patches for drivers of MFD/GPIO/Pincontrol are in flight. arch/arm64/configs/defconfig | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index a98a8ad..af3d4df 100644 --- a/arch/arm64/configs/defconfig +++ b/arch/arm64/configs/defconfig @@ -147,27 +147,32 @@ CONFIG_VIRTIO_CONSOLE=y CONFIG_I2C_CHARDEV=y CONFIG_I2C_MV64XXX=y CONFIG_I2C_QUP=y +CONFIG_I2C_TEGRA=y CONFIG_I2C_UNIPHIER_F=y CONFIG_I2C_RCAR=y CONFIG_SPI=y CONFIG_SPI_PL022=y CONFIG_SPI_QUP=y CONFIG_SPMI=y +CONFIG_PINCTRL_MAX77620=y CONFIG_PINCTRL_MSM8916=y CONFIG_PINCTRL_QCOM_SPMI_PMIC=y CONFIG_GPIO_SYSFS=y CONFIG_GPIO_PL061=y CONFIG_GPIO_RCAR=y CONFIG_GPIO_XGENE=y +CONFIG_GPIO_MAX77620=y CONFIG_POWER_RESET_XGENE=y CONFIG_POWER_RESET_SYSCON=y # CONFIG_HWMON is not set +CONFIG_MFD_MAX77620=y CONFIG_MFD_SPMI_PMIC=y CONFIG_THERMAL=y CONFIG_THERMAL_EMULATION=y CONFIG_EXYNOS_THERMAL=y CONFIG_REGULATOR=y CONFIG_REGULATOR_FIXED_VOLTAGE=y +CONFIG_REGULATOR_MAX77620=y CONFIG_REGULATOR_QCOM_SMD_RPM=y CONFIG_REGULATOR_QCOM_SPMI=y CONFIG_FB=y @@ -216,6 +221,7 @@ CONFIG_LEDS_TRIGGERS=y CONFIG_LEDS_TRIGGER_HEARTBEAT=y CONFIG_LEDS_TRIGGER_CPU=y CONFIG_RTC_CLASS=y +CONFIG_RTC_DRV_MAX77686=y CONFIG_RTC_DRV_EFI=y CONFIG_RTC_DRV_PL031=y CONFIG_RTC_DRV_SUN6I=y -- 2.1.4
[toc] | [next] | [standalone]
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2016-03-01 00:40 +0100 |
| Message-ID | <r7FzX-1d2-3@gated-at.bofh.it> |
| In reply to | #1345798 |
On Monday 29 February 2016 18:32:52 Laxman Dewangan wrote: > Enable following configs for the Maxim Semiconductor's PMIC > MAX77620/MAX20024. This is used on NVIDIA's Tegra 210 platform > Jetson-TX1. > > CONFIG_MFD_MAX77620 For MFD driver. > CONFIG_PINCTRL_MAX77620 For pin control support > CONFIG_GPIO_MAX77620 for GPIO Support. > CONFIG_REGULATOR_MAX77620 for regulator support. > CONFIG_RTC_DRV_MAX77686 for RTC support. > > Enable Tegra I2C config to enable I2C in NVIDIA's Tegra 210 > platforms. > > Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> > --- > The patches for drivers of MFD/GPIO/Pincontrol are in flight. > I'm not entirely sure what you had meant to happen to this patch, as you have a lot of people in the 'To' line. Do you want us to pick it up into arm-soc with Thierry's Ack, or should he forward it, or is there a reason for Catalin and Will to put it into the arm64 tree? Arnd
[toc] | [prev] | [next] | [standalone]
| From | Laxman Dewangan <ldewangan@nvidia.com> |
|---|---|
| Date | 2016-03-01 13:00 +0100 |
| Message-ID | <r7R87-dU-19@gated-at.bofh.it> |
| In reply to | #1346253 |
On Tuesday 01 March 2016 05:02 AM, Arnd Bergmann wrote: > On Monday 29 February 2016 18:32:52 Laxman Dewangan wrote: >> Enable following configs for the Maxim Semiconductor's PMIC >> MAX77620/MAX20024. This is used on NVIDIA's Tegra 210 platform >> Jetson-TX1. >> >> CONFIG_MFD_MAX77620 For MFD driver. >> CONFIG_PINCTRL_MAX77620 For pin control support >> CONFIG_GPIO_MAX77620 for GPIO Support. >> CONFIG_REGULATOR_MAX77620 for regulator support. >> CONFIG_RTC_DRV_MAX77686 for RTC support. >> >> Enable Tegra I2C config to enable I2C in NVIDIA's Tegra 210 >> platforms. >> >> Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> >> --- >> The patches for drivers of MFD/GPIO/Pincontrol are in flight. >> > I'm not entirely sure what you had meant to happen to this patch, > as you have a lot of people in the 'To' line. > > Do you want us to pick it up into arm-soc with Thierry's Ack, > or should he forward it, or is there a reason for Catalin and > Will to put it into the arm64 tree? > > Not sure how will it go (via Tegra or arm-soc) but I will need Thierry's or Rhyland Klein's ACK.
[toc] | [prev] | [next] | [standalone]
| From | Thierry Reding <treding@nvidia.com> |
|---|---|
| Date | 2016-03-01 18:50 +0100 |
| Message-ID | <r7WAP-3OJ-47@gated-at.bofh.it> |
| In reply to | #1346552 |
[Multipart message — attachments visible in raw view] — view raw
On Tue, Mar 01, 2016 at 05:07:23PM +0530, Laxman Dewangan wrote: > > On Tuesday 01 March 2016 05:02 AM, Arnd Bergmann wrote: > >On Monday 29 February 2016 18:32:52 Laxman Dewangan wrote: > >>Enable following configs for the Maxim Semiconductor's PMIC > >>MAX77620/MAX20024. This is used on NVIDIA's Tegra 210 platform > >>Jetson-TX1. > >> > >> CONFIG_MFD_MAX77620 For MFD driver. > >> CONFIG_PINCTRL_MAX77620 For pin control support > >> CONFIG_GPIO_MAX77620 for GPIO Support. > >> CONFIG_REGULATOR_MAX77620 for regulator support. > >> CONFIG_RTC_DRV_MAX77686 for RTC support. > >> > >>Enable Tegra I2C config to enable I2C in NVIDIA's Tegra 210 > >>platforms. > >> > >>Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> > >>--- > >>The patches for drivers of MFD/GPIO/Pincontrol are in flight. > >> > >I'm not entirely sure what you had meant to happen to this patch, > >as you have a lot of people in the 'To' line. > > > >Do you want us to pick it up into arm-soc with Thierry's Ack, > >or should he forward it, or is there a reason for Catalin and > >Will to put it into the arm64 tree? > > > > > > Not sure how will it go (via Tegra or arm-soc) but I will need Thierry's or > Rhyland Klein's ACK. I'd prefer to take this through the Tegra tree. I'll probably postpone that until after v4.6 and merge this as the drivers get merged and after they can be enabled and verified on the Jetson TX1. Laxman, generally the defconfig changes go in through platform trees, so please send those to me in the future. I'll make sure to forward those to arm-soc with the rest of the Tegra patches. Thierry
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web