summaryrefslogtreecommitdiff
path: root/arch
AgeCommit message (Collapse)Author
2015-10-15Apalis/Colibri dts: add Colibri cam, Apalis Ixora specific dtbsMax Krummenacher
2015-10-15Colibri dtbs: add fixes from 3.10.17Max Krummenacher
While at it cleanup node names.
2015-10-15ARM: dts: Apalis/Colibri dts: use input dt-bindingsMax Krummenacher
Use commit e11011a0578101b2f0f9a066d13beeb2c2da5fcc on all device-trees: Rather than defining our own KEY_WAKEUP include the official input dt-bindings. While at it update copyright date range as well.
2015-10-15imx6dl-colibri-eval-v3.dts: prepare for fusion_F07/10AMax Krummenacher
Prepare for the needed changes to use the capacitive touch controller on Fusion F07, Fusion F10A displays. In order to use it uncomment the define PCAP and recompile and deploy the device tree Forward port of 3.10.17, commit e5925f53b4c6021d03a7a694d0512712036e83e6
2015-10-15Apalis dts: cleanup whitespaceMax Krummenacher
2015-09-24Apalis/Colibri iMX6 defconfigs: add HID_MULTITOUCHMax Krummenacher
2015-09-24ARM: dts: imx6dl-colibri: usb device/host switch using extcon gpioMarcel Ziswiler
Use USBC_DET feature of Standard Colibri SODIMM pin 137 for USB device/host switching using the generic extcon USB GPIO implementation.
2015-09-24ARM: dts: imx6dl-colibri: use input dt-bindingsMarcel Ziswiler
Rather than defining our own KEY_WAKEUP include the official input dt-bindings. While at it update copyright date range as well.
2015-09-24ARM: colibri_imx6: add extcon usb gpio support in defconfigMarcel Ziswiler
Enable extcon USB GPIO support in the default kernel configuration.
2015-09-18of: Make device nodes kobjects so they show up in sysfsGrant Likely
Device tree nodes are already treated as objects, and we already want to expose them to userspace which is done using the /proc filesystem today. Right now the kernel has to do a lot of work to keep the /proc view in sync with the in-kernel representation. If device_nodes are switched to be kobjects then the device tree code can be a whole lot simpler. It also turns out that switching to using /sysfs from /proc results in smaller code and data size, and the userspace ABI won't change if /proc/device-tree symlinks to /sys/firmware/devicetree/base. v7: Add missing sysfs_bin_attr_init() v6: Add __of_add_property() early init fixes from Pantelis v5: Rename firmware/ofw to firmware/devicetree Fix updating property values in sysfs v4: Fixed build error on Powerpc Fixed handling of dynamic nodes on powerpc v3: Fixed handling of duplicate attribute and child node names v2: switch to using sysfs bin_attributes which solve the problem of reporting incorrect property size. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Tested-by: Sascha Hauer <s.hauer@pengutronix.de> Cc: Rob Herring <rob.herring@calxeda.com> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: David S. Miller <davem@davemloft.net> Cc: Nathan Fontenot <nfont@linux.vnet.ibm.com> Cc: Pantelis Antoniou <panto@antoniou-consulting.com> (cherry picked from commit 75b57ecf9d1d1e17d099ab13b8f48e6e038676be)
2015-09-18leds: leds-gpio: Convert gpio_blink_set() to use GPIO descriptorsMika Westerberg
Commit 21f2aae91e902aad ("leds: leds-gpio: Add support for GPIO descriptors") already converted most of the driver to use GPIO descriptors. What is still missing is the platform specific hook gpio_blink_set() and board files which pass legacy GPIO numbers to this driver in platform data. In this patch we handle the former and convert gpio_blink_set() to take GPIO descriptor instead. In order to do this we convert the existing four users to accept GPIO descriptor and translate it to legacy GPIO number in the platform code. This effectively "pushes" legacy GPIO number usage from the driver to platforms. Also add comment to the remaining block describing that it is legacy code path and we are getting rid of it eventually. Suggested-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> Acked-by: Andrew Lunn <andrew@lunn.ch> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Acked-by: Alexandre Courbot <acourbot@nvidia.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> (cherry picked from commit c673a2b4008103525a3cf21bedf15ffac37bfef0)
2015-09-18ACPICA: Linux: Add support to exclude <asm/acenv.h> inclusion.Lv Zheng
The forthcoming patch will make <acpi/acpi.h> to be visible to all kernel source code. Thus for the architectures that do not support ACPI and haven't implemented <asm/acenv.h>, we need to make it excluded. Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> (cherry picked from commit d334c823b27401721591e0f1220050a41af08165)
2015-09-18ACPICA: Linux headers: Add <asm/acenv.h> to remove mis-ordered inclusion of ↵Lv Zheng
<asm/acpi.h> There is a mis-order inclusion for <asm/acpi.h>. As we will enforce including <linux/acpi.h> for all Linux ACPI users, we can find the inclusion order is as follows: <linux/acpi.h> <acpi/acpi.h> <acpi/platform/acenv.h> (acenv.h before including aclinux.h) <acpi/platform/aclinux.h> ........................................................................... (aclinux.h before including asm/acpi.h) <asm/acpi.h> @Redundant@ (ACPICA specific stuff) ........................................................................... ........................................................................... (Linux ACPI specific stuff) ? - - - - - - - - - - - - + (aclinux.h after including asm/acpi.h) @Invisible@ | (acenv.h after including aclinux.h) @Invisible@ | other ACPICA headers @Invisible@ | ............................................................|.............. <acpi/acpi_bus.h> | <acpi/acpi_drivers.h> | <asm/acpi.h> (Excluded) | (Linux ACPI specific stuff) ! <- - - - - - - - - - - - - + NOTE that, in ACPICA, <acpi/platform/acenv.h> is more like Kconfig generated <generated/autoconf.h> for Linux, it is meant to be included before including any ACPICA code. In the above figure, there is a question mark for "Linux ACPI specific stuff" in <asm/acpi.h> which should be included after including all other ACPICA header files. Thus they really need to be moved to the position marked with exclaimation mark or the definitions in the blocks marked with "@Invisible@" will be invisible to such architecture specific "Linux ACPI specific stuff" header blocks. This leaves 2 issues: 1. All environmental definitions in these blocks should have a copy in the area marked with "@Redundant@" if they are required by the "Linux ACPI specific stuff". 2. We cannot use any ACPICA defined types in <asm/acpi.h>. This patch splits architecture specific ACPICA stuff from <asm/acpi.h> to fix this issue. Signed-off-by: Lv Zheng <lv.zheng@intel.com> Cc: Tony Luck <tony.luck@intel.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: "H. Peter Anvin" <hpa@zytor.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> (cherry picked from commit 07d8391433380fc72f999d99c554b1cfedea9778)
2015-09-09Apalis/Colibri dtb: cleanup module connector designatorMax Krummenacher
Use consistently MXM3<space><number> or SODIMM<space><number>
2015-09-09Apalis iMX 6: cleanup filename for V1.0 HWMax Krummenacher
rename imx6q-apalis-eval_v1_0.dtb to imx6q-apalis_v1_0-eval.dtb The v1_0 denotes the Apalis module version, not the evaluation board version.
2015-09-01arm: Export cache flush management symbols when !MULTI_CACHEPantelis Antoniou
When compiling a kernel without CONFIG_MULTI_CACHE enabled the dma access functions end up not being exported. Fix it. Signed-off-by: Pantelis Antoniou <panto@antoniou-consulting.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> (cherry picked from commit 22f692548037e39809c32759b5600ee066ef59e9)
2015-08-24clk-imx6q.c: set eth phy clock dependent on RMII/RGMIIMax Krummenacher
Evaluate the device tree to find out about the used phy mode rather than using a hardcoded value of 125MHz valid for RGMII only.
2015-08-24pm-imx6.c: follow function name changeMax Krummenacher
2015-08-24colibri-imx6: use stopmode for poweroffMax Krummenacher
After the system has been shutdown with PMIC_ON_REQ and VCC_BATT is supplied from a battery it will never restart either by RESET or power cycle. So use the PMIC_STBY_REQ after shutdown to switch of power rails. Conflicts: arch/arm/mach-imx/pm-imx6.c drivers/regulator/pfuze100-regulator.c
2015-08-24mach-imx6q.c: handle RESET_MOCI when PCIe is disabledMax Krummenacher
(cherry picked from commit 02110528b45ae331d89f7e7bb6a29b5494ec0be1) Conflicts: arch/arm/mach-imx/mach-imx6q.c
2015-08-24apalis imx6: remove weim driverMax Krummenacher
The WEIM signals are not accessible so remove the driver from the config and set it to disabled in the device tree. (cherry picked from commit 6c2f7b22f5aa9572d35a3ddd7d14b653cf606550) Conflicts: arch/arm/configs/apalis_imx6_defconfig
2015-08-24OmniVision ov5640 MIPI-CSI2 camera supportWojciech Bieganski
gst-inspect mfw_v4lsrc gst-launch mfw_v4lsrc capture-mode=5 device=/dev/video2 ! mfw_v4lsink
2015-08-24Apalis/Colibri iMX6: add intital devicetreeMax Krummenacher
2015-08-24Apalis/Colibri iMX6: add intital defconfigMax Krummenacher
2015-08-24mach-imx6q.c: fix typo in error msgMax Krummenacher
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> (cherry picked from commit 943e92ef3b9822cd278eff806b001c14c7bebb83)
2015-08-24regulator: allow GPIO 0 to be used for an enable signalMax Krummenacher
GPIO number 0 *is* legal and must be accepted. Set .ena_gpio to -ENODEV on regulators having no GPIO in preparation of a code change to accept GPIO 0 in the config. (cherry picked from commit c87ddbb1325a448d56a920513206592f03bca117) Conflicts: arch/arm/mach-imx/gpc.c drivers/regulator/88pm8607.c drivers/regulator/ab8500-ext.c drivers/regulator/ab8500.c drivers/regulator/ad5398.c drivers/regulator/arizona-micsupp.c drivers/regulator/isl6271a-regulator.c drivers/regulator/lp3972.c drivers/regulator/max1586.c drivers/regulator/max8660.c drivers/regulator/max8925-regulator.c drivers/regulator/max8952.c drivers/regulator/max8998.c drivers/regulator/mc13783-regulator.c drivers/regulator/s2mps11.c drivers/regulator/tps65217-regulator.c drivers/regulator/tps6524x-regulator.c drivers/regulator/wm831x-dcdc.c drivers/regulator/wm831x-ldo.c
2015-05-29apalis_imx6_android_defconfig: add defconfig for androidDaniel Kochmanski
2015-05-29arm: imx6: fix pcie by disabling rc/ep test modeMarcel Ziswiler
Fix PCIe operation by disabling RC/EP test mode which according to the following community forum post is only used on the PCIe EP/RC validation system and otherwise prevent PCIe from working properly: https://community.freescale.com/thread/328257
2015-05-29apalis_imx6_defconfig: add CONFIG_NEW_LEDSMax Krummenacher
2015-05-29apalis_imx6_defconfig: add fusion-F0710A as a moduleMax Krummenacher
Enable the TouchRevolution Fusion 7 and 10 multi-touch controller driver to be built as a module. While at it remove NEW_LEDS which is enabled through dependencies.
2015-05-29apalis_imx6_defconfig: remove CONFIG_INPUT_EVBUGMax Krummenacher
2015-05-29apalis-imx6: add initial defconfigMax Krummenacher
2015-05-29mach-types: add the apalis-imx6 machineMax Krummenacher
2015-05-29dma-mapping: increase DEFAULT_DMA_COHERENT_POOL_SIZE ifdef CONFIG_VIDEO_TW68Troy Kisky
2015-05-29Add nitrogen6x_ub_defconfig with Ubuntu's preferred settingsEric Nelson
Signed-off-by: Eric Nelson <eric.nelson@boundarydevices.com>
2015-05-29nit6xlite_defconfig: initial additionTroy Kisky
2015-05-29add nitrogen6x_defconfigTroy Kisky
2015-05-29imx6dl-pinfunc: add MX6QDL_PAD_SD1_CLK__OSC32K_32K_OUTTroy Kisky
2015-05-29imx6q-pinfunc: add MX6QDL_PAD_SD1_CLK__OSC32K_32K_OUTTroy Kisky
2015-03-20MLK-10439: arm: imx: fix system hang after resume back under low busfreqrel_imx_3.14.28_1.0.0_gaBai Ping
System will be no response after resume back under low busfreq mode. The root cause of this issue is that when the system is under ultra_low_bus_freq mode on i.MX6SL, resume process has a low bus mode deamon in background, cause system enter low bus mode twice, busfreq driver will notify thermal driver to turn off PLL3 twice, and cause PLL3 usecount incorrect and UART no message out. Signed-off-by: Bai Ping <b51503@freescale.com>
2015-03-05MLK-10346: Enable NetFilter to align with Yocto Project communityNitin Garg
Enable CONFIG_NETFILTER as requested by Yocto community. Signed-off-by: Nitin Garg <nitin.garg@freescale.com>
2015-03-05MLK-10269: dts: Change sii902x hdmi bpp from 32 to 16Sandor Yu
In imx6sl/sx dts, the lcdif display bpp is setting to 16, and sii902x hdmi driver bpp is 32. The sii902x driver will overwrite the display bpp when it loading, but some module such as v4l2 output driver is misses bpp change event. So align sii902x hdmi driver bpp with lcdif display bpp. Signed-off-by: Sandor Yu <R01008@freescale.com> (cherry picked from commit 0fd274cc93a71c8636551c17d7d4157e97fe5cf2)
2015-03-03MLK-10199 ARM: clk-imx6q: set enet pll rate to 125MhzFugang Duan
Set enet pll rate to 125Mhz for RGMII tx refrence clock to support i.MX6q sabreauto cpu2 board. changed the enet_ref clock name for 3.14 kernel. Signed-off-by: Fugang Duan <B38611@freescale.com> (cherry picked from commit 6ee3d49271b1f13e359c1acde189dbb6dc4cb13e)
2015-03-03MLK-10228 dts: imx6qdl-sabreauto: remove SDb WP pin which is not connect by ↵Dong Aisheng
default SDb WP pin is not connected by default on MX6Q CPU2 board, so we removed it in DTS file. BTW, SDb slot is designed for WiFi slot, it is ok to disable WP for old CPU board also. Signed-off-by: Dong Aisheng <b29396@freescale.com> (cherry picked from commit 2efa09eb28d7404933725bc25b528641a9dc10f9) (cherry picked from commit dd6e28f2932284494c89bb4897ad84c01db969d8)
2015-03-02MLK-10349 ARM: dts: imx6dql: fix the clock for MIPI CSI2Robby Cai
Fix the clock index for cfg clock and use MACRO instead of hard-codes. This patch fixes the following issue. ----------------------------------------------------------- root@imx6qdlsolo:~# /unit_tests/mxc_v4l2_capture.out -d /dev/video1 1.yuv in_width = 176, in_height = 144 out_width = 176, out_height = 144 top = 0, left = 0 mipi csi2 can not receive sensor clk! ... ERROR: v4l2 capture: mxc_v4l_dqueue timeout enc_counter 0 VIDIOC_DQBUF failed.ERROR: v4l2 capture: VIDIOC_QBUF: buffer already queued ----------------------------------------------------------- Signed-off-by: Robby Cai <r63905@freescale.com> (cherry picked from commit 6e4ee449de591d3cfb93575ca639ca32944832bc)
2015-02-25MLK-10259: Remove ARCH_MULTI_V6 config from v7 defconfigNitin Garg
Sync imx_v7_defconfig with imx_3.10. ARCH_MULTI_V6 is not required. Signed-off-by: Nitin Garg <nitin.garg@freescale.com> (cherry picked from commit ea673b70908b301fc9901d804f141974491dcb3d)
2015-02-25ARM: imx: drop PL310 errata 588369 and 727915Shawn Guo
The PL310 integrated on i.MX6 series and VF610 are revision r3p1 and later. Per ARM PL310 errata document, 588369 is fixed in r2p0 and 727915 is fixed in r3p1. Neither is needed for i.MX6 or VF610. So let's drop them. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> (cherry picked from commit 8629a0f43b832573b06c27a214100c9b6398f59a) (cherry picked from commit 09d9f7dcfb59b6c65c9b1f4e37b72da480262133)
2015-02-12MLK-10232-3: dts: Add vadc to generic pm domainSandor Yu
-Add vadc to generic pm domain -Add vadc clk to dispmix management Signed-off-by: Sandor Yu <R01008@freescale.com> (cherry picked from commit 9c3199fa95d0b219234b511c364f6a9d4aec75cd)
2015-02-12MLK-10232-2 gpc: change the number of disply clksSandor Yu
Add vadc clock to dispmix power management. Signed-off-by: Sandor Yu <R01008@freescale.com> (cherry picked from commit 42bede68c37c23d807bf7ea44d7d2f8f7b31073d)
2015-02-11MLK-10203-3 arm: pcie: add the disp mix pwr domainRichard Zhu
since the pcie is power-ed by disp_mix domain, add disp_mix domain into pcie device node. Signed-off-by: Richard Zhu <Richard.Zhu@freescale.com> (cherry picked from commit 9ba62b896a873bf35df95b7d1c899021f3d7e9d6)