summaryrefslogtreecommitdiff
path: root/Documentation
AgeCommit message (Collapse)Author
2014-12-17mailbox/omap: Add ti,mbox-send-noirq quirk to fix AM33xx CPU IdleDave Gerlach
The mailbox framework controls the transmission queue and requires either its controller implementations or clients to run the state machine for the Tx queue. The OMAP mailbox controller uses a Tx-ready interrupt as the equivalent of a Tx-done interrupt to run this Tx queue state-machine. The WkupM3 processor on AM33xx and AM43xx SoCs is used to offload certain PM tasks, like doing the necessary operations for Device PM suspend/resume or for entering lower c-states during cpuidle. The CPUIdle on AM33xx requires the messages to be sent without having to trigger the Tx-ready interrupts, as the interrupt would immediately terminate the CPUIdle operation. Support for this has been added by introducing a DT quirk, "ti,mbox-send-noirq" and using it to modify the normal OMAP mailbox controller behavior on the sub-mailboxes used to communicate with the WkupM3 remote processor. This also requires the wkup_m3_ipc driver to adjust its mailbox usage logic to run the Tx state machine. NOTE: - AM43xx does not communicate with WkupM3 for CPU Idle, so is not affected by this behavior. But, it uses the same IPC driver for PM suspend/resume functionality, so requires the quirk as well, because of changes to the common wkup_m3_ipc driver. Signed-off-by: Dave Gerlach <d-gerlach@ti.com> [s-anna@ti.com: revise logic and update comments/patch description] Signed-off-by: Suman Anna <s-anna@ti.com>
2014-09-18Merge branch 'platform-ti-linux-3.14.y' into pm-ti-linux-3.14.yTero Kristo
Conflicts: arch/arm/boot/dts/dra72x.dtsi arch/arm/boot/dts/dra74x.dtsi Signed-off-by: Tero Kristo <t-kristo@ti.com>
2014-09-02clk: ti: add "ti,gpio-gate-clock" controlled clockJyri Sarha
The added ti,gpio-gate-clock is a basic clock that can be enabled and disabled trough a gpio output. The DT binding document for the clock is also added. For EPROBE_DEFER handling the registering of the clock has to be delayed until of_clk_get() call time. Acked-by: Tero Kristo <t-kristo@ti.com> Signed-off-by: Jyri Sarha <jsarha@ti.com>
2014-09-01ARM: OMAP2: pm33xx: Provide i2c voltage scaling data to wkup_m3Dave Gerlach
Allow loading of a binary containing i2c scaling sequences to be provided to the wkup_m3 firmware in order to properly scale voltage rails on the PMIC during low power modes like DeepSleep0. Proper binary format is determined by the FW in use. PM Code expects firmware to have 0x0C57 present as the first two bytes followed by one byte defining offset to sleep sequence followed by one byte defining offset to wake sequence and then lastly both sequences. Each sequence is a series of I2C transfers in the form: u8 length | u8 chip address | u8 byte0/reg address | u8 byte1 | u8 byteN .. The length indicates the number of bytes to transfer, including the register address. The length of each transfer is limited by the I2C buffer size of 32 bytes. Based on previous work by Russ Dill. Signed-off-by: Dave Gerlach <d-gerlach@ti.com>
2014-09-01regulator: of: add support for enabling regulator during suspendTero Kristo
regulator-suspend-enable is a new boolean property which can be used to define regulators that should be enabled during suspend. Signed-off-by: Tero Kristo <t-kristo@ti.com> Signed-off-by: Keerthy <j-keerthy@ti.com>
2014-09-01rtc: OMAP: Add system pm_power_off to rtc driverColin Foe-Parker
Add system power off control to rtc driver which is the in-charge of controlling the BeagleBone system power. The power_off routine can be hooked up to "pm_power_off" system call. System power off sequence:- * Set PMIC STATUS_OFF when PMIC_POWER_EN is pulled low * Enable PMIC_POWER_EN in rtc module * Set rtc ALARM2 time * Enable ALARM2 interrupt Signed-off-by: Colin Foe-Parker <colin.foeparker@logicpd.com> [anilkumar@ti.com: move poweroff additions to rtc driver] Signed-off-by: AnilKumar Ch <anilkumar@ti.com> [j-keerthy@ti.com] Ported to 3.14 Signed-off-by: Keerthy <j-keerthy@ti.com>
2014-08-28drivers: dma: Add dma crossbar driverR Sricharan
DRA7XX dma controller IP's are preceded by a crossbar which routes the dma requests from the peripherals to the dma request input lines of the appropriate dma controller. With this the dma controller's available request lines are shared between the peripherals. The driver maintains a list of free dma request lines and allocates one during the map callback which is invoked as a part the dma engine driver's device_alloc_chan_resources callback. The allocated request line is freed during the device_free_chan_resources. Signed-off-by: R Sricharan <r.sricharan@ti.com> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
2014-08-23pinctrl: single: AM437x: Add pinctrl compatibilityKeerthy
AM437x pinctrl definitions now differ from traditional 16 bit OMAP pin ctrl definitions, in that all 32 bits are used to describe a single pin Also the location of wakeupenable and event bits have changed. Signed-off-by: Keerthy <j-keerthy@ti.com> [nm@ti.com: minor updates] Signed-off-by: Nishanth Menon <nm@ti.com>
2014-08-23pinctrl: single: add DRA7 pinctrl compatibilityNishanth Menon
DRA7 pinctrl definitions now differ from traditional 16 bit OMAP pin ctrl definitions, in that all 32 bits are used to describe a single pin Also the location of wakeupenable and event bits have changed. Signed-off-by: Nishanth Menon <nm@ti.com>
2014-08-23pinctrl: bindings: Add OMAP pinctrl bindingNishanth Menon
Add basic skeleton of OMAP pinctrl bindings. This is compatible with pinctrl,single bindings and is meant purely as a reference point. Signed-off-by: Nishanth Menon <nm@ti.com>
2014-08-11Merge remote-tracking branch 'rnayak/platform-ti-linux-3.14.y' into ↵Tero Kristo
pm-ti-linux-3.14.y-next
2014-08-11ARM: OMAP2+: board-generic: add support for AM57xx familyNishanth Menon
AM57xx processor family are variants of DRA7 family of processors and targetted at industrial and non-automotive applications. Signed-off-by: Nishanth Menon <nm@ti.com>
2014-08-01ARM: dts: am437x-gp-evm: Enable wkup_m3 control of IO isolationDave Gerlach
With this flag wkup_m3 is able to control IO isolation during suspend on the board. Signed-off-by: Dave Gerlach <d-gerlach@ti.com>
2014-08-01ARM: OMAP2+: Add support for toggling VTT regulatorHebbar, Gururaja
Some boards (currently AM335x EVM-SK & AM437x GP EVM) provides s/w control via GPIO to toggle VTT regulator to reduce power consumption in low power state. The VTT regulator should be disabled after enabling self-refresh on suspend, and should be enabled before disabling self-refresh on resume. This is to allow proper self-refresh entry/exit commands to be transmitted to the memory. Add support for toggling VTT regulator using DT properties. Actual toggling happens in CM3 Firmware. The enable option & the GPIO pin used is collected in A8 Core and then sent to CM3 using IPC registers. Note: Here it is assumed that VTT Toggle will be done using a pin on GPIO-0 Instance. The reason is GPIO-0 is in wakeup domain. While here, fix the VTT GPIO pin mask. VTT GPIO PIN parameter is 6 bits and so the mask should be 0x3f & not 0x2f. Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com> Signed-off-by: Dave Gerlach <d-gerlach@ti.com>
2014-08-01Documentation: dt: add ti,am3353_wkup_m3 bindingsDave Gerlach
Add the device tree bindings document for am3353 wkup_m3. Signed-off-by: Dave Gerlach <d-gerlach@ti.com> CC: Ohad Ben-Cohen <ohad@wizery.com> CC: Benoit Cousson <bcousson@baylibre.com>
2014-07-31Merge remote-tracking branch 'mailbox/mailbox-linux-3.14.y' into ↵Tero Kristo
pm-ti-linux-3.14.y-next
2014-07-31Merge branch 'platform-ti-linux-3.14.y' into pm-ti-linux-3.14.y-nextTero Kristo
Conflicts: arch/arm/boot/dts/am43x-epos-evm.dts Signed-off-by: Tero Kristo <t-kristo@ti.com>
2014-07-30ARM: OMAP2+: omap_hwmod: Introduce ti,no-init dt propertyDave Gerlach
Introduce a dt property, ti,no-init, that prevents hwmod initialization. Even if a dt node is marked as disabled, hwmod still at least enables the hwmod and programs the sysconfig before attempting to idle it at boot. If an IP has been disabled by the hardware configuration on a platform, this will cause a hang due to writing to inactive registers. This property prevents that from happening by marking the hwmod as _HWMOD_STATE_DISABLED during init. Signed-off-by: Dave Gerlach <d-gerlach@ti.com>
2014-07-25cpufreq: cpu0: OPPs can be populated at runtimeViresh Kumar
OPPs can be populated statically, via DT, or added at run time with dev_pm_opp_add(). While this driver handles the first case correctly, it would fail to populate OPPs added at runtime. Because call to of_init_opp_table() would fail as there are no OPPs in DT and probe will return early. To fix this, remove error checking and call dev_pm_opp_init_cpufreq_table() unconditionally. Update bindings as well. Suggested-by: Stephen Boyd <sboyd@codeaurora.org> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> [d-gerlach@ti.com: Modified to apply after voltage notifier series] Signed-off-by: Dave Gerlach <d-gerlach@ti.com> Signed-off-by: Dave Gerlach <d-gerlach@ti.com>
2014-07-25mailbox/omap: adapt to the new mailbox frameworkSuman Anna
The OMAP mailbox driver and its existing clients (remoteproc for OMAP4+ and TI DSP/Bridge for OMAP3) are adapted to use the generic mailbox framework. The main changes for the adaptation are: - The tasklet used for Tx is replaced with the state machine from the generic mailbox framework. The workqueue used for processing the received messages stays intact for minimizing the effects on the OMAP mailbox clients. - The existing exported client API, omap_mbox_get, omap_mbox_put and omap_mbox_send_msg are deleted, as the framework provides equivalent functionality. A OMAP-specific omap_mbox_request_channel is added though to support non-DT way of requesting mailboxes. - The OMAP mailbox driver is integrated with the mailbox framework through the proper implementations of mbox_chan_ops, except for .last_tx_done and .peek_data. The OMAP mailbox driver does not need these ops, as it is completely interrupt driven. - The OMAP mailbox driver uses a custom of_xlate controller ops that allows phandles for the pargs specifier instead of indexing to avoid any channel registration order dependencies. - The new framework does not support multiple clients operating on a single channel, so the reference counting logic is simplified. - The remoteproc and tidspbridge drivers (current clients) are adapted to use the new API. The notifier callbacks used within these clients are replaced with the regular callbacks from the newer framework. - The exported OMAP mailbox API are limited to omap_mbox_save_ctx, omap_mbox_restore_ctx, omap_mbox_enable_irq & omap_mbox_disable_irq, with the signature modified to take in the new mbox_chan handle instead of the OMAP specific omap_mbox handle. The first 2 will be removed when the OMAP mailbox driver is adapted to runtime_pm. The other exported API omap_mbox_request_channel will be removed once OMAP3 becomes DT-boot only. Cc: Jassi Brar <jassisinghbrar@gmail.com> Cc: Ohad Ben-Cohen <ohad@wizery.com> Cc: Omar Ramirez Luna <omar.ramirez@copitl.com> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Suman Anna <s-anna@ti.com>
2014-07-25dt: mailbox: add generic bindingsJaswinder Singh
Define generic bindings for the framework clients to request mailbox channels. Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
2014-07-25doc: add documentation for mailbox frameworkJaswinder Singh
Some explanations with examples of how to write to implement users and providers of the mailbox framework. Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
2014-07-25Documentation: dt: add omap mailbox bindingsSuman Anna
Add the device tree bindings document for OMAP2+ mailbox. Cc: Rob Herring <robh+dt@kernel.org> Cc: Pawel Moll <pawel.moll@arm.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Ian Campbell <ijc+devicetree@hellion.org.uk> Cc: Kumar Gala <galak@codeaurora.org> Signed-off-by: Suman Anna <s-anna@ti.com>
2014-07-16Merge branch 'platform-ti-linux-3.14.y' into pm-ti-linux-3.14.yDave Gerlach
Signed-off-by: Dave Gerlach <d-gerlach@ti.com>
2014-07-09regulator: Add DT bindings for tps65218 PMIC regulators.Keerthy
Add DT bindings for tps65218 PMIC regulators. Signed-off-by: Keerthy <j-keerthy@ti.com> Reviewed-by: Felipe Balbi <balbi@ti.com>
2014-07-09mfd: Add DT bindings for tps65218 PMICKeerthy
Add DT bindings for tps65218 PMIC Signed-off-by: Keerthy <j-keerthy@ti.com> Reviewed-by: Felipe Balbi <balbi@ti.com>
2014-07-08ARM: dts: add support for AM437x StarterKitFelipe Balbi
commit 4a45787dec8a15b211110be807b4f4aad2828385 upstream. Add support for TI's AM437x StarterKit Evaluation Module. Cc: Josh Elliot <jelliott@ti.com> Signed-off-by: Felipe Balbi <balbi@ti.com> Tested-by: Franklin Cooper Jr. <fcooper@ti.com> Tested-by: Tom Rini <trini@ti.com> Tested-by: Darren Etheridge <detheridge@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
2014-06-26Merge remote-tracking branch ↵Tero Kristo
'nmenon/v3.14/never-upstream/power/voltagedomain' into pm-ti-linux-3.14.y-next Conflicts: arch/arm/boot/dts/dra7.dtsi drivers/cpufreq/cpufreq-cpu0.c Signed-off-by: Tero Kristo <t-kristo@ti.com>
2014-06-25irqchip: crossbar: Allow for quirky hardware with direct hardwiring of GICNishanth Menon
On certain platforms such as DRA7, SPIs 0, 1, 2, 3, 5, 6, 10, 131, 132, 133 are direct wired to hardware blocks bypassing crossbar. This quirky implementation is *NOT* supposed to be the expectation of crossbar hardware usage. However, these are already marked in our description of the hardware with SKIP and RESERVED where appropriate. Unfortunately, we need to be able to refer to these hardwired IRQs. So, to request these, crossbar driver can use the existing information from it's table that these SKIP/RESERVED maps are direct wired sources and generic allocation/programming of crossbar should be avoided. Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Sricharan R <r.sricharan@ti.com>
2014-06-25documentation: dt: omap: crossbar: Add description for interrupt consumerNishanth Menon
The current crossbar description does not include the description required for the consumer of the crossbar, a.k.a devices whoes events pass through the crossbar into the GIC interrupt controller. So, provide documentation for the same. Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Sricharan R <r.sricharan@ti.com>
2014-06-25irqchip: crossbar: Introduce ti,max-crossbar-sources to identify valid ↵Nishanth Menon
crossbar mapping Currently we attempt to map any crossbar value to an IRQ, however, this is not correct from hardware perspective. There is a max crossbar event number upto which hardware supports. So describe the same in device tree using 'ti,max-crossbar-sources' property and use it to validate requests. Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Sricharan R <r.sricharan@ti.com>
2014-06-25irqchip: crossbar: Initialise the crossbar with a safe valueNishanth Menon
Since crossbar is s/w configurable, the initial settings of the crossbar cannot be assumed to be sane. This implies that: a) On initialization all un-reserved crossbars must be initialized to a known 'safe' value. b) When unmapping the interrupt, the safe value must be written to ensure that the crossbar mapping matches with interrupt controller usage. So provide a safe value in the dt data to map if '0' is not safe for the platform and use it during init and unmap While at this, fix the below checkpatch warning. Fixes checkpatch warning: WARNING: Unnecessary space before function pointer arguments #37: FILE: drivers/irqchip/irq-crossbar.c:37: + void (*write) (int, int); Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Sricharan R <r.sricharan@ti.com>
2014-06-25irqchip: crossbar: Introduce ti,irqs-skip to skip irqs that bypass crossbarNishanth Menon
When, in the system due to varied reasons, interrupts might be unusable due to hardware behavior, but register maps do exist, then those interrupts should be skipped while mapping irq to crossbars. Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Sricharan R <r.sricharan@ti.com>
2014-06-25regulator: palmas: Add tps65917 compatible stringKeerthy
Add tps65917 compatible string. Signed-off-by: Keerthy <j-keerthy@ti.com>
2014-06-25mfd: Add DT bindings for tps65917 PMICKeerthy
Add DT bindings for tps65917 PMIC. Signed-off-by: Keerthy <j-keerthy@ti.com>
2014-06-20omapdss: panel-tpo-td028ec1: Add DT support.Marek Belisko
[ Upstream commit 1f32450911dfa243b8ff79cef62d2ddaeeb3e033 ] Signed-off-by: Marek Belisko <marek@goldelico.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> [Fixed up for ti-linux-3.14.y by detheridge@ti.com] Signed-off-by: Darren Etheridge <detheridge@ti.com> Conflicts: arch/arm/mach-omap2/display.c Signed-off-by: Darren Etheridge <detheridge@ti.com>
2014-06-20mfd: twl6040: Optional clk32k clock handlingPeter Ujfalusi
[ Upstream commit 68bab8662f49b9e158f1d32f11becd4e48c04079 ] In certain boards the source for the clk32k clock can be gated. In these boards the clk32k clock can be provided to the driver and it is going to be enabled/disabled when it is needed. If the clk32k clock is not provided the driver will assume that it is always running. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Signed-off-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Darren Etheridge <detheridge@ti.com>
2014-06-20Doc/DT: Add DT binding documentation for TPO td043mtea1 panelTomi Valkeinen
[ Upstream commit c594b057413d0ec6b0ef3881ae7c78b3bb1240f8 ] Add DT binding documentation for TPO td043mtea1 panel Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Cc: devicetree@vger.kernel.org Cc: Grazvydas Ignotas <notasas@gmail.com> Signed-off-by: Darren Etheridge <detheridge@ti.com>
2014-06-20Doc/DT: Add binding doc for lgphilips,lb035q02.txtTomi Valkeinen
[ Upstream commit bbc646fa53c3478e82e9e0fd708220d1193fd062 ] Add DT bindings documentation for LG.Philips LB035Q02 LCD panel. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Cc: devicetree@vger.kernel.org Signed-off-by: Darren Etheridge <detheridge@ti.com>
2014-06-20Doc/DT: Add OMAP5 DSS DT bindingsTomi Valkeinen
[ Upstream commit dedf2d44336e542d03653f60040938b0adce0a5f ] Add DT binding documentation for OMAP5 Display Subsystem. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Cc: devicetree@vger.kernel.org Signed-off-by: Darren Etheridge <detheridge@ti.com>
2014-06-20Doc/DT: ti,omap4-dss: hdmi lanesTomi Valkeinen
[ Upstream commit 2c5c4075bcb998b54f51497b168ce0b280814e41 ] Add documentation for defining HDMI lane functions and polarities. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Cc: devicetree@vger.kernel.org Signed-off-by: Darren Etheridge <detheridge@ti.com>
2014-06-20Doc/DT: hdmi-connector: add HPD GPIO documentationTomi Valkeinen
[ Upstream commit f8be053fc17d776f0505febf035c0a8cd20cc4b2 ] Add binding documentation for HDMI connector's HPD GPIO. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Cc: devicetree@vger.kernel.org Signed-off-by: Darren Etheridge <detheridge@ti.com>
2014-06-20Doc/DT: Add DT binding documentation for MIPI DPI PanelTomi Valkeinen
[ Upstream commit 905b1383d7650c1b1f4321cc6cc9e696c26fef25 ] Add DT binding documentation for MIPI DPI Panel. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Reviewed-by: Archit Taneja <archit@ti.com> Cc: devicetree@vger.kernel.org Signed-off-by: Darren Etheridge <detheridge@ti.com>
2014-06-20ASoC: simple-card: Move dai-link level properties away from dai subnodesJyri Sarha
[ Upstream commit b3ca11ff59bc5842b01f13421a17e6d9a8936784 ] The properties like format, bitclock-master, frame-master, bitclock-inversion, and frame-inversion should be common to the dais connected with a dai-link. For bitclock-master and frame-master properties to be unambiguous they need to indicate the mastering dai node with a phandle. Signed-off-by: Jyri Sarha <jsarha@ti.com> Acked-by: Jean-Francois Moine <moinejf@free.fr> Signed-off-by: Mark Brown <broonie@linaro.org> Signed-off-by: Darren Etheridge <detheridge@ti.com>
2014-06-20ASoC: simple-card: Add DT documentation for multi-DAI linksJean-Francois Moine
[ Upstream commit 015f630de86c8a79df45c475c34087d3e96b882a ] Many couples of CPU/CODEC DAI links may be described in the DT thanks to 'simple-audio-card,dai-link' containers. Signed-off-by: Jean-Francois Moine <moinejf@free.fr> Signed-off-by: Mark Brown <broonie@linaro.org> Signed-off-by: Darren Etheridge <detheridge@ti.com>
2014-06-20ASoC: simple-card: overwrite cpu_dai->fmt with codec_dai->fmtNicolin Chen
[ Upstream commit 46c39cae292fd691f32e573e6c2c854e36614c93 ] The current simple-card driver separates the daimft for cpu_dai and codec_dai. So we might get different values for them (0x4003 and 0x1003 for example): asoc-simple-card sound-cs42888.12: cpu : 2024000.esai / 4003 / 132000000 asoc-simple-card sound-cs42888.12: codec : cs42888 / 1003 / 24576000 asoc-simple-card sound-cs42888.12: cs42888 <-> 2024000.esai mapping ok This is not allowed at all as we need to keep the DAIFMT settings identical for both the ends of the link. Thus this patch fixes it by overwriting the cpu_dai->fmt with codec_dai->fmt since we defined the DAIFMT_MASTER basing on CODEC at the first place while the other bits are same. Signed-off-by: Nicolin Chen <Guangyu.Chen@freescale.com> Signed-off-by: Mark Brown <broonie@linaro.org> Signed-off-by: Darren Etheridge <detheridge@ti.com>
2014-06-20ASoC: simple-card: add slot information parsing supportsXiubo Li
[ Upstream commit 6ff62eedce4f7756b092d276165d8e11edab9f28 ] For some CPU/CODEC DAI devices the slot information maybe needed. This patch adds the slot information parsing for simple-card driver. Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com> Signed-off-by: Mark Brown <broonie@linaro.org> Signed-off-by: Darren Etheridge <detheridge@ti.com>
2014-06-20ASoC: binding: add tdm-slot.txtXiubo Li
[ Upstream commit 72899ad8a46a80ad5fc725afea443f94945ae370 ] Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com> Signed-off-by: Mark Brown <broonie@linaro.org> Signed-off-by: Darren Etheridge <detheridge@ti.com>
2014-06-20ASoC: binding: add widgets.txtXiubo Li
[ Upstream commit ac7f4820301b6b6029f01e4c276c2cd42272d9cb ] Suggested-by: Mark Brown <broonie@linaro.org> Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com> Signed-off-by: Mark Brown <broonie@linaro.org> Signed-off-by: Darren Etheridge <detheridge@ti.com>
2014-06-20ASoC: simple-card: for new properties documenting and usageXiubo Li
[ Upstream commit 66841345073b049c0c194486bac4d7f07266a57e ] This add the following three new properties documenting and usage for simple card: "simple-audio-card,name", "simple-audio-card,widgets", Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com> Signed-off-by: Mark Brown <broonie@linaro.org> Signed-off-by: Darren Etheridge <detheridge@ti.com>