Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1284948 > unrolled thread
| Started by | Krzysztof Kozlowski <k.kozlowski@samsung.com> |
|---|---|
| First post | 2015-12-07 02:10 +0100 |
| Last post | 2015-12-07 13:10 +0100 |
| Articles | 5 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH] ARM: multi_v7_defconfig: Enable fan, sensors and audio for Odroid XU3 Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2015-12-07 02:10 +0100
Re: [PATCH] ARM: multi_v7_defconfig: Enable fan, sensors and audio for Odroid XU3 Arnd Bergmann <arnd@arndb.de> - 2015-12-07 10:20 +0100
Re: [PATCH] ARM: multi_v7_defconfig: Enable fan, sensors and audio for Odroid XU3 Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2015-12-07 10:40 +0100
Re: [PATCH] ARM: multi_v7_defconfig: Enable fan, sensors and audio for Odroid XU3 Arnd Bergmann <arnd@arndb.de> - 2015-12-07 10:50 +0100
Re: [PATCH] ARM: multi_v7_defconfig: Enable fan, sensors and audio for Odroid XU3 Javier Martinez Canillas <javier@osg.samsung.com> - 2015-12-07 13:10 +0100
| From | Krzysztof Kozlowski <k.kozlowski@samsung.com> |
|---|---|
| Date | 2015-12-07 02:10 +0100 |
| Subject | [PATCH] ARM: multi_v7_defconfig: Enable fan, sensors and audio for Odroid XU3 |
| Message-ID | <qCStr-64w-3@gated-at.bofh.it> |
For Odroid XU3-family enable the: - PWM fan (to control the CPU fan using thermal subsystem), - TI INA231 sensors (provide power measurements of big.LITTLE cores, DRAM and GPU), - Samsung sound (for Odroid XU3 and Snow as well). Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> --- arch/arm/configs/multi_v7_defconfig | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig index f6a2557b55df..419f9413402c 100644 --- a/arch/arm/configs/multi_v7_defconfig +++ b/arch/arm/configs/multi_v7_defconfig @@ -390,7 +390,8 @@ CONFIG_POWER_RESET_RMOBILE=y CONFIG_SENSORS_LM90=y CONFIG_SENSORS_LM95245=y CONFIG_SENSORS_NTC_THERMISTOR=m -CONFIG_THERMAL=y +CONFIG_SENSORS_PWM_FAN=m +CONFIG_SENSORS_INA2XX=m CONFIG_CPU_THERMAL=y CONFIG_ROCKCHIP_THERMAL=y CONFIG_RCAR_THERMAL=y @@ -521,10 +522,13 @@ CONFIG_SND_HDA_INPUT_BEEP=y CONFIG_SND_HDA_PATCH_LOADER=y CONFIG_SND_HDA_CODEC_REALTEK=m CONFIG_SND_HDA_CODEC_HDMI=m -CONFIG_SND_USB_AUDIO=y +CONFIG_SND_USB_AUDIO=m CONFIG_SND_SOC=m CONFIG_SND_ATMEL_SOC=m CONFIG_SND_ATMEL_SOC_WM8904=m +CONFIG_SND_SOC_SAMSUNG=m +CONFIG_SND_SOC_SNOW=m +CONFIG_SND_SOC_ODROIDX2=m CONFIG_SND_SOC_SH4_FSI=m CONFIG_SND_SOC_RCAR=m CONFIG_SND_SOC_RSRC_CARD=m -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2015-12-07 10:20 +0100 |
| Subject | Re: [PATCH] ARM: multi_v7_defconfig: Enable fan, sensors and audio for Odroid XU3 |
| Message-ID | <qD07F-2A3-35@gated-at.bofh.it> |
| In reply to | #1284948 |
On Monday 07 December 2015 09:59:54 Krzysztof Kozlowski wrote: > For Odroid XU3-family enable the: > - PWM fan (to control the CPU fan using thermal subsystem), > - TI INA231 sensors (provide power measurements of big.LITTLE cores, > DRAM and GPU), > - Samsung sound (for Odroid XU3 and Snow as well). > > Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> > Looks good. Do you have a samsung/defconfig branch already that you can put this into, or should be pick it up into arm-soc directly? My preference is the former, but it would be a bit silly if that is the only samsung defconfig change we need. Arnd -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Krzysztof Kozlowski <k.kozlowski@samsung.com> |
|---|---|
| Date | 2015-12-07 10:40 +0100 |
| Message-ID | <qD0r0-2GA-9@gated-at.bofh.it> |
| In reply to | #1285116 |
On 07.12.2015 18:14, Arnd Bergmann wrote: > On Monday 07 December 2015 09:59:54 Krzysztof Kozlowski wrote: >> For Odroid XU3-family enable the: >> - PWM fan (to control the CPU fan using thermal subsystem), >> - TI INA231 sensors (provide power measurements of big.LITTLE cores, >> DRAM and GPU), >> - Samsung sound (for Odroid XU3 and Snow as well). >> >> Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> >> > > Looks good. Do you have a samsung/defconfig branch already that you > can put this into, or should be pick it up into arm-soc directly? > > My preference is the former, but it would be a bit silly if that > is the only samsung defconfig change we need. I had a couple of defconfig patches in my queue but I sent them last week to Kukjin in pull request. He didn't pull it yet. Maybe he could apply this patch after pulling? Anyway we can wait for a few days to sort it out. If I don't have another defconfig patches then I will remind myself with applying it to arm-soc. Best regards, Krzysztof -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2015-12-07 10:50 +0100 |
| Subject | Re: [PATCH] ARM: multi_v7_defconfig: Enable fan, sensors and audio for Odroid XU3 |
| Message-ID | <qD0AF-2K8-7@gated-at.bofh.it> |
| In reply to | #1285134 |
On Monday 07 December 2015 18:38:44 Krzysztof Kozlowski wrote: > On 07.12.2015 18:14, Arnd Bergmann wrote: > > On Monday 07 December 2015 09:59:54 Krzysztof Kozlowski wrote: > >> For Odroid XU3-family enable the: > >> - PWM fan (to control the CPU fan using thermal subsystem), > >> - TI INA231 sensors (provide power measurements of big.LITTLE cores, > >> DRAM and GPU), > >> - Samsung sound (for Odroid XU3 and Snow as well). > >> > >> Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> > >> > > > > Looks good. Do you have a samsung/defconfig branch already that you > > can put this into, or should be pick it up into arm-soc directly? > > > > My preference is the former, but it would be a bit silly if that > > is the only samsung defconfig change we need. > > I had a couple of defconfig patches in my queue but I sent them last > week to Kukjin in pull request. He didn't pull it yet. Maybe he could > apply this patch after pulling? > > Anyway we can wait for a few days to sort it out. If I don't have > another defconfig patches then I will remind myself with applying it to > arm-soc. > Ok, sounds good. Arnd -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Javier Martinez Canillas <javier@osg.samsung.com> |
|---|---|
| Date | 2015-12-07 13:10 +0100 |
| Subject | Re: [PATCH] ARM: multi_v7_defconfig: Enable fan, sensors and audio for Odroid XU3 |
| Message-ID | <qD2Mb-4hB-19@gated-at.bofh.it> |
| In reply to | #1284948 |
Hello Krzysztof, On 12/06/2015 09:59 PM, Krzysztof Kozlowski wrote: > For Odroid XU3-family enable the: > - PWM fan (to control the CPU fan using thermal subsystem), > - TI INA231 sensors (provide power measurements of big.LITTLE cores, > DRAM and GPU), > - Samsung sound (for Odroid XU3 and Snow as well). > > Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> > --- > arch/arm/configs/multi_v7_defconfig | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig > index f6a2557b55df..419f9413402c 100644 > --- a/arch/arm/configs/multi_v7_defconfig > +++ b/arch/arm/configs/multi_v7_defconfig Reviewed-by: Javier Martinez Canillas <javier@osg.samsung.com> Best regards, -- Javier Martinez Canillas Open Source Group Samsung Research America -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web