aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/configs/davinci_all_defconfig (follow)
AgeCommit message (Collapse)AuthorFilesLines
2018-06-29ARM: davinci_all_defconfig: Enable BluetoothDavid Lechner1-0/+9
This enables Bluetooth modules in davinic_all_defconfig needed for LEGO MINDSTORMS EV3. Build CONFIG_SERIAL_DEV_BUS into the kernel since SERIAL_DEV_CTRL_TTYPORT requires it so. Signed-off-by: David Lechner <david@lechnology.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2018-06-26ARM: davinci_all_defconfig: remove CONFIG_DAVINCI_RESET_CLOCKSDavid Lechner1-1/+0
This removes CONFIG_DAVINCI_RESET_CLOCKS. The option has been removed from the kernel. Signed-off-by: David Lechner <david@lechnology.com> Reviewed-by: Sekhar Nori <nsekhar@ti.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2018-06-18ARM: davinci_all_defconfig: set CONFIG_BACKLIGHT_PWM=mAdam Ford1-0/+1
The da850-evm came with an LCD with a backlight tied to a pwm. This enables CONFIG_BACKLIGHT_PWM as a module so the PWM backlight can be used to maintain brightness control of the backlight. Signed-off-by: Adam Ford <aford173@gmail.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2018-04-23ARM: davinci_all_defconfig: enable support for remoteproc driversBartosz Golaszewski1-1/+3
Enable the remoteproc framework and the da8xx remoteproc driver by default in the davinci defconfig. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2018-02-26ARM: davinci_all_defconfig: set CONFIG_DAVINCI_WATCHDOG=yDavid Lechner1-1/+1
This changes CONFIG_DAVINCI_WATCHDOG from a module to a compiled-in option. Since the reset function has been moved out of the mach code in commit 94f2e94514e5 ("ARM: davinci: remove watchdog reset") and into the watchdog driver, devices cannot reboot unless the watchdog driver is loaded, so make it a compiled-in option so that we can always reboot, even when modules are not loaded. Cc: Sekhar Nori <nsekhar@ti.com> Suggested-by: Adam Ford <aford173@gmail.com> Signed-off-by: David Lechner <david@lechnology.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2018-02-23ARM: davinci_all_defconfig: enable SYSCON_REBOOT_MODEDavid Lechner1-0/+1
This enables SYSCON_REBOOT_MODE as a module. This is used by LEGO MINDSTORMS EV3 to reboot into a special firmware update mode. Signed-off-by: David Lechner <david@lechnology.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-11-27ARM: davinci_all_defconfig: enable support for USB network adaptorsAparna Balasubramanian1-0/+1
Enables CONFIG_USB_USBNET so that well known USB network adapters can enumerate as network interfaces. Signed-off-by: Aparna Balasubramanian <aparnab@ti.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-09-21ARM: davinci_all_defconfig: enable CMA optionsSuman Anna1-0/+2
Enable the CMA and DMA_CMA Kconfig options by default for Davinci platforms. Davinci remoteproc driver is one of the modules that depends on these options, and this allows the driver to be made visible for selection with menuconfig. Signed-off-by: Suman Anna <s-anna@ti.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-09-20ARM: davinci_all_defconfig: enable MTD_CMDLINE_PARTSAdam Ford1-1/+1
There is some disagreement between the partition table map in Linux for the DA850-EVM and the corresponding partition map in U-Boot. To prevent breaking the Kernel, this patch enables MTD_CMDLINE_PARTS which will allow the U-Boot to pass the partition map so future partitions match without breaking backwards compatibility. While at it, also sync to savedefconfig which leads to removal of CONFIG_MMC_BLOCK_BOUNCE. Signed-off-by: Adam Ford <aford173@gmail.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-08-21ARM: davinci_all_defconfig: enable tinydrm and ST7586David Lechner1-0/+2
This enables the tinydrm and ST7586 panel modules used by the display on LEGO MINDSTORMS EV3. Signed-off-by: David Lechner <david@lechnology.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-06-16ARM: davinci_all_defconfig: enable USB CDC NCM gadgetSekhar Nori1-0/+1
Enable USB CDC NCM gadget module in davinci_all_defconfig to make it easier to use it on these devices. Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-06-16ARM: davinci_all_defconfig: enable mtdtestsSekhar Nori1-0/+1
mtdtests module has some useful tests to verify that mtd drivers like davinci_nand are working correctly. Enable it in davinci_all_defconfig to make testing and debug easier. Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-05-30ARM: davinci_all_defconfig: Enable CPPI 4.1 USB OTG DMAAlexandre Bailon1-1/+1
CPPI 4.1 DMA is now supported on AM18xx. Update the config to use it instead of PIO mode. Signed-off-by: Alexandre Bailon <abailon@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-05-22ARM: davinci_all_defconfig: enable USB audio/video device supportSekhar Nori1-0/+3
Enable support for USB audio and video camera devices. Tested on OMAP-L138 LCDK using Logitech webcam and Plantronics headset. Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-05-22ARM: davinci_all_defconfig: cleanup with savedefconfigSekhar Nori1-3/+1
davinci_all_defconfig is out of sync with savedefconfig in some places. Regenerate the default settings by: $ make davinci_all_config $ make savedefconfig $ cp defconfig arch/arm/configs/davinci_all_defconfig Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-05-17ARM: davinci_all_defconfig: enable LEGO MINDSTORMS EV3 battery moduleDavid Lechner1-0/+1
This enables the power supply module for the LEGO MINDSTORMS EV3 battery. Signed-off-by: David Lechner <david@lechnology.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-03-30ARM: davinci_all_defconfig: convert to use libata PATASekhar Nori1-3/+1
IDE subsystem has been deprecated since 2009 and the majority (if not all) of Linux distributions have switched to use libata for ATA support exclusively. However there are still some users (mostly old or/and embedded non-x86 systems) that have not converted from using IDE subsystem to libata PATA drivers. This doesn't seem to be good thing in the long-term for Linux as while there is less and less PATA systems left in use: * testing efforts are divided between two subsystems * having duplicate drivers for same hardware confuses users This patch converts davinci_all_defconfig to use libata PATA drivers. Signed-off-by: Sekhar Nori <nsekhar@ti.com> [b.zolnierkie: split from bigger patch + added patch description] Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2017-03-07ARM: davinci_all_defconfig: Enable TI ADS7950David Lechner1-3/+1
This enables the TI ADS7950 IIO driver. This is used on LEGO MINDSTORMS EV3. The other IIO configs removed in this patch are selected by CONFIG_TI_ADS7950, so they are not actually being desabled. Signed-off-by: David Lechner <david@lechnology.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-03-06ARM: davinci_all_defconfig: enable IRQ support for pca953xBartosz Golaszewski1-0/+1
We need IRQs from the tca6416 expander for vpif capture to work on the da850-evm board. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-03-06ARM: davinci_all_defconfig: enable VPIF display modulesBartosz Golaszewski1-0/+2
Enable the VPIF display module and the video encoder present on the da850-evm UI board. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-01-31ARM: davinci_all_defconfig: enable SATA modulesBartosz Golaszewski1-0/+2
Add the da850-ahci driver to davinci defconfig. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-01-20ARM: davinci_all_defconfig: enable iioDavid Lechner1-0/+9
This enables the iio subsystem. This will be used by LEGO MINDSTORMS EV3, which has an ADS7957 chip. Signed-off-by: David Lechner <david@lechnology.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-01-10ARM: davinci_all_defconfig: Enable PWM modulesDavid Lechner1-0/+3
This enables PWM and the TI ECAP and EHRWPM modules. These are used on LEGO MINDSTORMS EV3. Signed-off-by: David Lechner <david@lechnology.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-01-10ARM: davinci_all_defconfig: enable DA8xx pinconfDavid Lechner1-0/+1
This enables the DA8xx pinconf driver by default. It is needed by LEGO MINDSTORMS EV3. Signed-off-by: David Lechner <david@lechnology.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-01-09ARM: davinci_all_defconfig: enable pwm-beeperDavid Lechner1-0/+1
This enables the pwm-beeper module. This is used by the speaker on LEGO MINDSTORMS EV3. Signed-off-by: David Lechner <david@lechnology.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-01-03ARM: davinci_all_defconfig: enable dumb vga-dac drm bridgeBartosz Golaszewski1-0/+1
This enables the dumb-vga-dac driver by default for davinci boards. The driver is needed for tilcdc support on da850-lcdk board. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2017-01-03ARM: davinci_all_defconfig: enable video capture as modulesKevin Hilman1-0/+6
Enable media support and V4L2 capture, along with video decoders used on da850 platforms. Tested on da850-lcdk. Signed-off-by: Kevin Hilman <khilman@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2016-12-01ARM: davinci_all_defconfig: Enable da8xx usb otgAlexandre Bailon1-0/+2
The musb driver is enabled but the phy and the glue for the da8xx are not enabled. Enable them. Signed-off-by: Alexandre Bailon <abailon@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2016-11-22ARM: davinci_all_defconfig: Enable OHCI as moduleAxel Haslam1-0/+1
Enable the davinci ohci driver as a module for usb tested with the omap138-lcdk board. Signed-off-by: Axel Haslam <ahaslam@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2016-11-15ARM: davinci_all_defconfig: add missing options for systemdSekhar Nori1-2/+4
Some kernel configuration options required for systemd support are missing in davinci_all_defconfig. Add them. This is based on recommendations in: http://cgit.freedesktop.org/systemd/systemd/tree/README Options which kernel enables by default (and will thus be removed upon next savedefconfig update) are not included. Tested on OMAP-L138 LCDK board with fully up to date armv5 archlinux filesystem. Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2016-11-15ARM: davinci_all_defconfig: enable the mstpri and ddrctl driversBartosz Golaszewski1-0/+2
With the da8xx memory controller and master peripheral priority drivers merged and corresponding device tree changes in place we can now enable appropriate options by default. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2016-11-01ARM: davinci_all_defconfig: enable LED default-on triggerDavid Lechner1-0/+1
The LEDs default-on trigger is nice to have. For example, it can be used to configure a LED as a power indicator. Signed-off-by: David Lechner <david@lechnology.com> [nsekhar@ti.com: build as module, subject line fixes] Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2016-11-01ARM: davinci_all_defconfig: build MMC into kernelDavid Lechner1-2/+2
This changes the davinci default configuration to build the davinci MMC driver into the kernel. This allows booting from an SD card without requiring an initrd containing the kernel module. Signed-off-by: David Lechner <david@lechnology.com> [nsekhar@ti.com: minor commit message adjustments] Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2016-11-01ARM: davinci_all_defconfig: enable gpio poweroff driverDavid Lechner1-0/+2
The gpio-poweroff driver is needed by LEGO MINDSTORMS EV3 (AM1808 based board). Signed-off-by: David Lechner <david@lechnology.com> [nsekhar@ti.com: subject line adjustment] Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2016-11-01ARM: davinci_all_defconfig: enable LCDC DRM driverBartosz Golaszewski1-0/+2
With the device tree changes for tilcdc in place, we can now enable the driver by default in the davinci_all defconfig file. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2016-08-23ARM: davinci_all_defconfig: Enable some UBI modulesKarl Beldan1-0/+3
This enables UBI+UBIFS to handle the NAND MTDs, including the useful MTD_UBI_BLOCK. Signed-off-by: Karl Beldan <kbeldan@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2016-08-17ARM: davinci_all_defconfig: Enable AEMIF as a moduleKarl Beldan1-0/+2
This enables the use of the memory/ti-aemif.c driver. ATM most davinci boards use the mach-davinci aemif code which gets in the way of genericity and proper DT boot. Signed-off-by: Karl Beldan <kbeldan@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2016-08-09ARM: davinci_all_defconfig: enable SMSC ethernet PHYKarl Beldan1-0/+1
The LCDK embeds a LAN8710. Cc: Sekhar Nori <nsekhar@ti.com> Cc: Kevin Hilman <khilman@baylibre.com> Acked-by: Kevin Hilman <khilman@baylibre.com> Tested-by: Kevin Hilman <khilman@baylibre.com> Signed-off-by: Karl Beldan <kbeldan@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2016-08-09ARM: davinci_all_defconfig: enable RTC driver as moduleKarl Beldan1-0/+1
This driver handles the RTC of most davinci SoCs. Cc: Sekhar Nori <nsekhar@ti.com> Cc: Kevin Hilman <khilman@baylibre.com> Acked-by: Kevin Hilman <khilman@baylibre.com> Tested-by: Kevin Hilman <khilman@baylibre.com> Signed-off-by: Karl Beldan <kbeldan@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2016-08-08ARM: davinci_all_defconfig: enable DA850 audio as modulesKevin Hilman1-0/+4
Build audio support for DA850-based devices as modules in the default defconfig. Cc: Sekhar Nori <nsekhar@ti.com> Signed-off-by: Kevin Hilman <khilman@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2016-08-08ARM: davinci_all_defconfig: cleanup with savedefconfigKevin Hilman1-41/+14
It's been awhile since a cleanup was done. Regenerate the default settings by $ make davinci_all_config $ make savedefconfig $ cp defconfig arch/arm/configs/davinci_all_defconfig Cc: Sekhar Nori <nsekhar@ti.com> Signed-off-by: Kevin Hilman <khilman@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2016-04-25ARM: davinci_all_defconfig: enable SPI and NOR as modulesKevin Hilman1-0/+4
Enable SPI driver and SPI NOR flash support as modules. Tested with SPI NOR flash on DA850-EVM. Basic boot test only to confirm NOR flash device detection. Signed-off-by: Kevin Hilman <khilman@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2016-04-25ARM: davinci_all_defconfig: support systemdSekhar Nori1-1/+1
CONFIG_FHANDLE is required by systemd[1], which is the default init system in more and more distributions. So lets enable it for DaVinci platforms as well. While at it, remove stale entry CONFIG_INOTIFY=y [1] https://github.com/systemd/systemd/blob/master/README#L37 Acked-by: Kevin Hilman <khilman@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2016-04-14ARM: davinci_all_defconfig: enable GPIO_SYSFSSekhar Nori1-0/+1
CONFIG_GPIO_SYSFS provides a convenient way to access GPIOs from userspace. Enable it for DaVinci. Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2014-12-19PM: Eliminate CONFIG_PM_RUNTIMERafael J. Wysocki1-1/+1
Having switched over all of the users of CONFIG_PM_RUNTIME to use CONFIG_PM directly, turn the latter into a user-selectable option and drop the former entirely from the tree. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org> Acked-by: Kevin Hilman <khilman@linaro.org>
2014-11-29netpoll: delete defconfig references to obsolete NETPOLL_TRAPPaul Gortmaker1-1/+0
In commit 9c62a68d13119a1ca9718381d97b0cb415ff4e9d ("netpoll: Remove dead packet receive code (CONFIG_NETPOLL_TRAP)") this Kconfig option was removed. So remove references to it from all defconfigs as well. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
2014-06-03Merge tag 'usb-3.16-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb into nextLinus Torvalds1-1/+0
Pull USB driver updates from Greg KH: "Here is the big USB driver pull request for 3.16-rc1. Nothing huge here, but lots of little things in the USB core, and in lots of drivers. Hopefully the USB power management will be work better now that it has been reworked to do per-port power control dynamically. There's also a raft of gadget driver updates and fixes, CONFIG_USB_DEBUG is finally gone now that everything has been converted over to the dynamic debug inteface, the last hold-out drivers were cleaned up and the config option removed. There were also other minor things all through the drivers/usb/ tree, the shortlog shows this pretty well. All have been in linux-next, including the very last patch, which came from linux-next to fix a build issue on some platforms" * tag 'usb-3.16-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb: (314 commits) usb: hub_handle_remote_wakeup() only exists for CONFIG_PM=y USB: orinoco_usb: remove CONFIG_USB_DEBUG support USB: media: lirc: igorplugusb: remove CONFIG_USB_DEBUG support USB: media: streamzap: remove CONFIG_USB_DEBUG USB: media: redrat3: remove CONFIG_USB_DEBUG usage USB: media: redrat3: remove unneeded tracing macro usb: qcserial: add additional Sierra Wireless QMI devices usb: host: max3421-hcd: Use module_spi_driver usb: host: max3421-hcd: Allow platform-data to specify Vbus polarity usb: host: max3421-hcd: fix "spi_rd8" uses dynamic stack allocation warning usb: host: max3421-hcd: Fix missing unlock in max3421_urb_enqueue() usb: qcserial: add Netgear AirCard 341U Documentation: dt-bindings: update xhci-platform DT binding for R-Car H2 and M2 usb: host: xhci-plat: add xhci_plat_start() usb: host: max3421-hcd: Fix potential NULL urb dereference Revert "usb: gadget: net2280: Add support for PLX USB338X" USB: usbip: remove CONFIG_USB_DEBUG reference USB: remove CONFIG_USB_DEBUG from defconfig files usb: resume child device when port is powered on usb: hub_handle_remote_wakeup() depends on CONFIG_PM_RUNTIME=y ...
2014-05-27USB: delete CONFIG_USB_DEVICEFS from defconfigNaoki MATSUMOTO1-1/+0
It no longer occurs in Kconfig. USB: remove CONFIG_USB_DEVICEFS(fb28d58b) leaked remove defconfig. Signed-off-by: Naoki MATSUMOTO <nekomatu+linux@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2014-05-22ARM: davinci: remove checks for CONFIG_USB_MUSB_PERIPHERALPaul Bolle1-1/+0
The Kconfig symbol USB_MUSB_PERIPHERAL was removed in v3.1. The last two checks for its macro now always evaluate to false. So remove these checks. Signed-off-by: Paul Bolle <pebolle@tiscali.nl> [nsekhar@ti.com: also cleaned-up usage in defconfig file] Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2014-04-05Merge tag 'soc-3.15' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-socLinus Torvalds1-0/+23
Pull ARM SoC specific changes from Arnd Bergmann: "Lots of changes specific to one of the SoC families. Some that stick out are: - mach-qcom gains new features, most importantly SMP support for the newer chips (Stephen Boyd, Rohit Vaswani) - mvebu gains support for three new SoCs: Armada 375, 380 and 385 (Thomas Petazzoni and Free-electrons team) - SMP support for Rockchips (Heiko Stübner) - Lots of i.MX changes (Shawn Guo) - Added support for BCM5301x SoC (Hauke Mehrtens) - Multiplatform support for Marvell Kirkwood and Dove (Andrew Lunn and Sebastian Hesselbarth doing the final part of a long journey) - Unify davinci platforms and remove obsolete ones (Sekhar Nori, Arnd Bergmann)" * tag 'soc-3.15' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (126 commits) ARM: sunxi: Select HAVE_ARM_ARCH_TIMER ARM: cache-tauros2: remove ARMv6 code ARM: mvebu: don't select CONFIG_NEON ARM: davinci: fix DT booting with default defconfig ARM: configs: bcm_defconfig: enable bcm590xx regulator support ARM: davinci: remove tnetv107x support MAINTAINERS: Update ARM STi maintainers ARM: restrict BCM_KONA_UART to ARCH_BCM_MOBILE ARM: bcm21664: Add board support. ARM: sunxi: Add the new watchog compatibles to the reboot code ARM: enable ARM_HAS_SG_CHAIN for multiplatform ARM: davinci: remove da8xx_omapl_defconfig ARM: davinci: da8xx: fix multiple watchdog device registration ARM: davinci: add da8xx specific configs to davinci_all_defconfig ARM: davinci: enable da8xx build concurrently with older devices ARM: BCM5301X: workaround suppress fault ARM: BCM5301X: add early debugging support ARM: BCM5301X: initial support for the BCM5301X/BCM470X SoCs with ARM CPU ARM: mach-bcm: Remove GENERIC_TIME ARM: shmobile: APMU: Fix warnings due to improper printk formats ...