diff options
11 files changed, 0 insertions, 982 deletions
diff --git a/recipes-kernel/linux/linux-imx-rt-3.14.28/0001-ARM-imx6q-drop-unnecessary-semicolon.patch b/recipes-kernel/linux/linux-imx-rt-3.14.28/0001-ARM-imx6q-drop-unnecessary-semicolon.patch deleted file mode 100644 index 8d431832c..000000000 --- a/recipes-kernel/linux/linux-imx-rt-3.14.28/0001-ARM-imx6q-drop-unnecessary-semicolon.patch +++ /dev/null | |||
| @@ -1,35 +0,0 @@ | |||
| 1 | From 5332a5467624b01d0c166309cd1dceac5f7b9d96 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Dmitry Voytik <voytikd@gmail.com> | ||
| 3 | Date: Thu, 6 Nov 2014 22:46:20 +0400 | ||
| 4 | Subject: [PATCH 1/3] ARM: imx6q: drop unnecessary semicolon | ||
| 5 | |||
| 6 | commit d2a10a1727b3948019128e83162f22c65859f1fd upstream. | ||
| 7 | |||
| 8 | Drop unnecessary semicolon after closing curly bracket. | ||
| 9 | |||
| 10 | Signed-off-by: Dmitry Voytik <voytikd@gmail.com> | ||
| 11 | Signed-off-by: Shawn Guo <shawn.guo@linaro.org> | ||
| 12 | Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | ||
| 13 | |||
| 14 | Upstream-Status: Backport [3.14.29] | ||
| 15 | |||
| 16 | --- | ||
| 17 | arch/arm/mach-imx/clk-imx6q.c | 2 +- | ||
| 18 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 19 | |||
| 20 | diff --git a/arch/arm/mach-imx/clk-imx6q.c b/arch/arm/mach-imx/clk-imx6q.c | ||
| 21 | index f0d8000..a5107ab 100644 | ||
| 22 | --- a/arch/arm/mach-imx/clk-imx6q.c | ||
| 23 | +++ b/arch/arm/mach-imx/clk-imx6q.c | ||
| 24 | @@ -149,7 +149,7 @@ static void __init imx6q_clocks_init(struct device_node *ccm_node) | ||
| 25 | post_div_table[2].div = 1; | ||
| 26 | video_div_table[1].div = 1; | ||
| 27 | video_div_table[2].div = 1; | ||
| 28 | - }; | ||
| 29 | + } | ||
| 30 | |||
| 31 | clk[IMX6QDL_PLL1_BYPASS_SRC] = imx_clk_mux("pll1_bypass_src", base + 0x00, 14, 2, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels)); | ||
| 32 | clk[IMX6QDL_PLL2_BYPASS_SRC] = imx_clk_mux("pll2_bypass_src", base + 0x30, 14, 2, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels)); | ||
| 33 | -- | ||
| 34 | 2.1.4 | ||
| 35 | |||
diff --git a/recipes-kernel/linux/linux-imx-rt-3.14.28/0001-fix-build.patch b/recipes-kernel/linux/linux-imx-rt-3.14.28/0001-fix-build.patch deleted file mode 100644 index 4be4066d6..000000000 --- a/recipes-kernel/linux/linux-imx-rt-3.14.28/0001-fix-build.patch +++ /dev/null | |||
| @@ -1,71 +0,0 @@ | |||
| 1 | Fix build errors when RT patch is applied | ||
| 2 | |||
| 3 | Upstream-Status: Inappropriate [other] | ||
| 4 | Freescale does not support the RT patch | ||
| 5 | |||
| 6 | Signed-off-by: Jacob Kroon <jacob.kroon@mikrodidakt.se> | ||
| 7 | Signed-off-by: Dominic Sacré <dominic.sacre@gmx.de> [updated for 3.14.28] | ||
| 8 | |||
| 9 | diff --git a/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_os.c b/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_os.c | ||
| 10 | index 2ec98dc..5d0b7df 100644 | ||
| 11 | --- a/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_os.c | ||
| 12 | +++ b/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_os.c | ||
| 13 | @@ -7344,7 +7344,7 @@ gckOS_WaitSignal( | ||
| 14 | |||
| 15 | might_sleep(); | ||
| 16 | |||
| 17 | - spin_lock_irq(&signal->obj.wait.lock); | ||
| 18 | + raw_spin_lock_irq(&signal->obj.wait.lock); | ||
| 19 | |||
| 20 | if (signal->obj.done) | ||
| 21 | { | ||
| 22 | @@ -7366,9 +7366,8 @@ gckOS_WaitSignal( | ||
| 23 | ? MAX_SCHEDULE_TIMEOUT | ||
| 24 | : Wait * HZ / 1000; | ||
| 25 | |||
| 26 | - DECLARE_WAITQUEUE(wait, current); | ||
| 27 | - wait.flags |= WQ_FLAG_EXCLUSIVE; | ||
| 28 | - __add_wait_queue_tail(&signal->obj.wait, &wait); | ||
| 29 | + DEFINE_SWAITER(wait); | ||
| 30 | + swait_prepare_locked(&signal->obj.wait, &wait); | ||
| 31 | |||
| 32 | while (gcvTRUE) | ||
| 33 | { | ||
| 34 | @@ -7380,9 +7379,9 @@ gckOS_WaitSignal( | ||
| 35 | } | ||
| 36 | |||
| 37 | __set_current_state(TASK_INTERRUPTIBLE); | ||
| 38 | - spin_unlock_irq(&signal->obj.wait.lock); | ||
| 39 | + raw_spin_unlock_irq(&signal->obj.wait.lock); | ||
| 40 | timeout = schedule_timeout(timeout); | ||
| 41 | - spin_lock_irq(&signal->obj.wait.lock); | ||
| 42 | + raw_spin_lock_irq(&signal->obj.wait.lock); | ||
| 43 | |||
| 44 | if (signal->obj.done) | ||
| 45 | { | ||
| 46 | @@ -7403,10 +7402,10 @@ gckOS_WaitSignal( | ||
| 47 | } | ||
| 48 | } | ||
| 49 | |||
| 50 | - __remove_wait_queue(&signal->obj.wait, &wait); | ||
| 51 | + swait_finish_locked(&signal->obj.wait, &wait); | ||
| 52 | } | ||
| 53 | |||
| 54 | - spin_unlock_irq(&signal->obj.wait.lock); | ||
| 55 | + raw_spin_unlock_irq(&signal->obj.wait.lock); | ||
| 56 | |||
| 57 | OnError: | ||
| 58 | /* Return status. */ | ||
| 59 | diff --git a/include/linux/imx_sema4.h b/include/linux/imx_sema4.h | ||
| 60 | index 9787980..3586199 100644 | ||
| 61 | --- a/include/linux/imx_sema4.h | ||
| 62 | +++ b/include/linux/imx_sema4.h | ||
| 63 | @@ -9,6 +9,8 @@ | ||
| 64 | #ifndef __LINUX_IMX_SEMA4_H__ | ||
| 65 | #define __LINUX_IMX_SEMA4_H__ | ||
| 66 | |||
| 67 | +#include <linux/wait.h> | ||
| 68 | + | ||
| 69 | #define SEMA4_NUM_DEVICES 1 | ||
| 70 | #define SEMA4_NUM_GATES 16 | ||
| 71 | |||
diff --git a/recipes-kernel/linux/linux-imx-rt-3.14.28/0002-ARM-clk-imx6q-fix-video-divider-for-rev-T0-1.0.patch b/recipes-kernel/linux/linux-imx-rt-3.14.28/0002-ARM-clk-imx6q-fix-video-divider-for-rev-T0-1.0.patch deleted file mode 100644 index d7b852dad..000000000 --- a/recipes-kernel/linux/linux-imx-rt-3.14.28/0002-ARM-clk-imx6q-fix-video-divider-for-rev-T0-1.0.patch +++ /dev/null | |||
| @@ -1,40 +0,0 @@ | |||
| 1 | From 5b9eb0cdaefd7ac8e31c1e1812582e0169ba9722 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Gary Bisson <bisson.gary@gmail.com> | ||
| 3 | Date: Wed, 3 Dec 2014 15:03:51 -0800 | ||
| 4 | Subject: [PATCH 2/3] ARM: clk-imx6q: fix video divider for rev T0 1.0 | ||
| 5 | |||
| 6 | commit 81ef447950bf0955aca46f4a7617d8ce435cf0ce upstream. | ||
| 7 | |||
| 8 | The post dividers do not work on i.MX6Q rev T0 1.0 so they must be fixed | ||
| 9 | to 1. As the table index was wrong, a divider a of 4 could still be | ||
| 10 | requested which implied the clock not to be set properly. This is the | ||
| 11 | root cause of the HDMI not working at high resolution on rev T0 1.0 of | ||
| 12 | the SoC. | ||
| 13 | |||
| 14 | Signed-off-by: Gary Bisson <bisson.gary@gmail.com> | ||
| 15 | Cc: <stable@vger.kernel.org> | ||
| 16 | Signed-off-by: Shawn Guo <shawn.guo@linaro.org> | ||
| 17 | Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | ||
| 18 | |||
| 19 | Upstream-Status: Backport [3.14.29] | ||
| 20 | |||
| 21 | --- | ||
| 22 | arch/arm/mach-imx/clk-imx6q.c | 2 +- | ||
| 23 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 24 | |||
| 25 | diff --git a/arch/arm/mach-imx/clk-imx6q.c b/arch/arm/mach-imx/clk-imx6q.c | ||
| 26 | index a5107ab..cf060a9 100644 | ||
| 27 | --- a/arch/arm/mach-imx/clk-imx6q.c | ||
| 28 | +++ b/arch/arm/mach-imx/clk-imx6q.c | ||
| 29 | @@ -148,7 +148,7 @@ static void __init imx6q_clocks_init(struct device_node *ccm_node) | ||
| 30 | post_div_table[1].div = 1; | ||
| 31 | post_div_table[2].div = 1; | ||
| 32 | video_div_table[1].div = 1; | ||
| 33 | - video_div_table[2].div = 1; | ||
| 34 | + video_div_table[3].div = 1; | ||
| 35 | } | ||
| 36 | |||
| 37 | clk[IMX6QDL_PLL1_BYPASS_SRC] = imx_clk_mux("pll1_bypass_src", base + 0x00, 14, 2, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels)); | ||
| 38 | -- | ||
| 39 | 2.1.4 | ||
| 40 | |||
diff --git a/recipes-kernel/linux/linux-imx-rt-3.14.28/0002-fix-build-with-rt-enabled.patch b/recipes-kernel/linux/linux-imx-rt-3.14.28/0002-fix-build-with-rt-enabled.patch deleted file mode 100644 index 83652c968..000000000 --- a/recipes-kernel/linux/linux-imx-rt-3.14.28/0002-fix-build-with-rt-enabled.patch +++ /dev/null | |||
| @@ -1,19 +0,0 @@ | |||
| 1 | Fix build error when PREEMPT_RT_FULL is enabled | ||
| 2 | |||
| 3 | Upstream-Status: Pending | ||
| 4 | |||
| 5 | Signed-off-by: Jacob Kroon <jacob.kroon@mikrodidakt.se> | ||
| 6 | |||
| 7 | Index: git/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_os.c | ||
| 8 | =================================================================== | ||
| 9 | --- git.orig/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_os.c | ||
| 10 | +++ git/drivers/mxc/gpu-viv/hal/os/linux/kernel/gc_hal_kernel_os.c | ||
| 11 | @@ -3266,7 +3266,7 @@ gckOS_CreateMutex( | ||
| 12 | gcmkONERROR(gckOS_Allocate(Os, gcmSIZEOF(struct mutex), Mutex)); | ||
| 13 | |||
| 14 | /* Initialize the mutex. */ | ||
| 15 | - mutex_init(*Mutex); | ||
| 16 | + mutex_init((struct mutex*)*Mutex); | ||
| 17 | |||
| 18 | /* Return status. */ | ||
| 19 | gcmkFOOTER_ARG("*Mutex=0x%X", *Mutex); | ||
diff --git a/recipes-kernel/linux/linux-imx-rt-3.14.28/0003-ARM-imx6sl-Disable-imx6sl-specific-code-when-imx6sl-.patch b/recipes-kernel/linux/linux-imx-rt-3.14.28/0003-ARM-imx6sl-Disable-imx6sl-specific-code-when-imx6sl-.patch deleted file mode 100644 index 0743099f6..000000000 --- a/recipes-kernel/linux/linux-imx-rt-3.14.28/0003-ARM-imx6sl-Disable-imx6sl-specific-code-when-imx6sl-.patch +++ /dev/null | |||
| @@ -1,56 +0,0 @@ | |||
| 1 | From 8340ad4ab71b568e65dfd1b92cc0967152887f97 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Nikolay Dimitrov <picmaster@mail.bg> | ||
| 3 | Date: Sun, 8 Feb 2015 22:18:09 +0200 | ||
| 4 | Subject: [PATCH 3/3] ARM: imx6sl: Disable imx6sl-specific code when imx6sl SOC | ||
| 5 | support is disabled | ||
| 6 | |||
| 7 | Currently the build fails when CONFIG_SOC_IMX6SL is disabled, due to some | ||
| 8 | hard-coded stuff. The patch purpose is to handle enabling/disabling this | ||
| 9 | config option. | ||
| 10 | |||
| 11 | Signed-off-by: Nikolay Dimitrov <picmaster@mail.bg> | ||
| 12 | Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> | ||
| 13 | |||
| 14 | Upstream-Status: Pending | ||
| 15 | |||
| 16 | --- | ||
| 17 | arch/arm/mach-imx/Makefile | 3 ++- | ||
| 18 | arch/arm/mach-imx/mxc.h | 4 ++++ | ||
| 19 | 2 files changed, 6 insertions(+), 1 deletion(-) | ||
| 20 | |||
| 21 | diff --git a/arch/arm/mach-imx/Makefile b/arch/arm/mach-imx/Makefile | ||
| 22 | index b76a214..27f1976 100644 | ||
| 23 | --- a/arch/arm/mach-imx/Makefile | ||
| 24 | +++ b/arch/arm/mach-imx/Makefile | ||
| 25 | @@ -122,7 +122,8 @@ obj-$(CONFIG_SOC_IMX6SL) += busfreq_lpddr2.o lpddr2_freq_imx6.o imx6sl_lpm_wfi.o | ||
| 26 | AFLAGS_lpddr2_freq_imx6sx.o :=-Wa,-march=armv7-a | ||
| 27 | AFLAGS_ddr3_freq_imx6sx.o :=-Wa,-march=armv7-a | ||
| 28 | AFLAGS_imx6sx_low_power_idle.o :=-Wa,-march=armv7-a | ||
| 29 | -obj-$(CONFIG_SOC_IMX6SX) += ddr3_freq_imx6sx.o lpddr2_freq_imx6sx.o imx6sx_low_power_idle.o | ||
| 30 | +obj-$(CONFIG_SOC_IMX6SX) += ddr3_freq_imx6sx.o lpddr2_freq_imx6sx.o imx6sx_low_power_idle.o \ | ||
| 31 | + busfreq_lpddr2.o lpddr2_freq_imx6.o | ||
| 32 | endif | ||
| 33 | |||
| 34 | |||
| 35 | diff --git a/arch/arm/mach-imx/mxc.h b/arch/arm/mach-imx/mxc.h | ||
| 36 | index 1510769..e6af4dd 100644 | ||
| 37 | --- a/arch/arm/mach-imx/mxc.h | ||
| 38 | +++ b/arch/arm/mach-imx/mxc.h | ||
| 39 | @@ -158,10 +158,14 @@ extern unsigned int __mxc_cpu_type; | ||
| 40 | #endif | ||
| 41 | |||
| 42 | #ifndef __ASSEMBLY__ | ||
| 43 | +#ifdef CONFIG_SOC_IMX6SL | ||
| 44 | static inline bool cpu_is_imx6sl(void) | ||
| 45 | { | ||
| 46 | return __mxc_cpu_type == MXC_CPU_IMX6SL; | ||
| 47 | } | ||
| 48 | +#else | ||
| 49 | +# define cpu_is_imx6sl() (0) | ||
| 50 | +#endif | ||
| 51 | |||
| 52 | static inline bool cpu_is_imx6dl(void) | ||
| 53 | { | ||
| 54 | -- | ||
| 55 | 2.1.4 | ||
| 56 | |||
diff --git a/recipes-kernel/linux/linux-imx-rt-3.14.28/0003-no-split-ptlocks.patch b/recipes-kernel/linux/linux-imx-rt-3.14.28/0003-no-split-ptlocks.patch deleted file mode 100644 index 40c012a51..000000000 --- a/recipes-kernel/linux/linux-imx-rt-3.14.28/0003-no-split-ptlocks.patch +++ /dev/null | |||
| @@ -1,85 +0,0 @@ | |||
| 1 | Work around the oops below by disabling split ptlocks | ||
| 2 | |||
| 3 | Upstream-Status: Inappropriate [disable feature] | ||
| 4 | |||
| 5 | Signed-off-by: Jacob Kroon <jacob.kroon@mikrodidakt.se> | ||
| 6 | Signed-off-by: Dominic Sacré <dominic.sacre@gmx.de> [updated for 3.14.28] | ||
| 7 | |||
| 8 | Unable to handle kernel NULL pointer dereference at virtual address 00000000 | ||
| 9 | pgd = ac5a8000 | ||
| 10 | [00000000] *pgd=3c8db831, *pte=00000000, *ppte=00000000 | ||
| 11 | Internal error: Oops: 17 [#1] PREEMPT SMP ARM | ||
| 12 | Modules linked in: | ||
| 13 | CPU: 1 PID: 277 Comm: test-qt5 Not tainted 3.10.17-rt12-monkey+gec1af9f #2 | ||
| 14 | task: ac65df80 ti: ac968000 task.ti: ac968000 | ||
| 15 | PC is at _raw_spin_lock+0x10/0x4c | ||
| 16 | LR is at get_parent_ip+0x10/0x2c | ||
| 17 | pc : [<80623fd4>] lr : [<8004ef18>] psr: 60010013 | ||
| 18 | sp : ac969c38 ip : 80c44404 fp : 00000000 | ||
| 19 | r10: ac65df80 r9 : ac969cd8 r8 : 00000000 | ||
| 20 | r7 : 00000054 r6 : afffe000 r5 : 00000000 r4 : 00000000 | ||
| 21 | r3 : ac65df80 r2 : 00000001 r1 : 00000000 r0 : 00000000 | ||
| 22 | Flags: nZCv IRQs on FIQs on Mode SVC_32 ISA ARM Segment user | ||
| 23 | Control: 10c53c7d Table: 3c5a804a DAC: 00000015 | ||
| 24 | Process test-qt5 (pid: 277, stack limit = 0xac968238) | ||
| 25 | Stack: (0xac969c38 to 0xac96a000) | ||
| 26 | 9c20: b00549a8 806235e0 | ||
| 27 | 9c40: 00000000 ac968000 812f9a00 80017cec ac969c74 fffffffe 00000000 00005000 | ||
| 28 | 9c60: 00000000 80017e6c ac968000 ac65df80 00000000 00000000 00000001 ac968001 | ||
| 29 | 9c80: ac65df80 b00549a8 00000000 afffe000 00000054 00000000 ac969cd8 afffe150 | ||
| 30 | 9ca0: b0054bf8 8044e540 ac969cd8 b00549a8 ac0b8180 00000230 ac8fd000 00000230 | ||
| 31 | 9cc0: 00000000 8044f6f4 ac155700 ac969cf4 ac155700 804605b8 ac155700 ac969d8c | ||
| 32 | 9ce0: 00000002 ac969d24 b0054bf8 804607f4 7ef1fcd0 80450078 ac0b8180 ac155700 | ||
| 33 | 9d00: ac969d8c 00000002 ac8fd000 8045f1a0 ac969d24 00000000 ac8fd01c b00549a8 | ||
| 34 | 9d20: b0050000 00000008 ac969d98 ac0b8300 ac969d8c 00000115 ac969d98 ac969e00 | ||
| 35 | 9d40: ac155600 ac3985f0 7ef1fcd0 8045661c 00000115 00000000 00000001 00000000 | ||
| 36 | 9d60: 00007530 80454144 80c32e18 00000001 81518e18 806237dc 00000001 ac968038 | ||
| 37 | 9d80: 00000000 00000000 00000000 00000000 00000115 806237dc ac6f5688 ac968018 | ||
| 38 | 9da0: 812e1640 00000000 00000001 ac968000 ac969dc4 8004efe4 ac968008 ac39a000 | ||
| 39 | 9dc0: ac744400 ac968020 00007530 ac968000 ac968000 ac3985f0 7ef1fcd0 8044d374 | ||
| 40 | 9de0: 7ef1fd20 00000000 000000f8 00000000 7ef1fd20 00000000 000000f8 00000000 | ||
| 41 | 9e00: 00000028 00000002 00000000 6437d1dd 7ef1fddc 76f9c030 7ef1fd88 76fb9abc | ||
| 42 | 9e20: 00000320 00005007 e02c7eca c1399eff 020fb2db 00000000 00000000 00000000 | ||
| 43 | 9e40: 00000001 00000040 00000400 00000004 00000010 00000400 00000002 00000100 | ||
| 44 | 9e60: 00000100 00000008 00000008 00000000 ffffffff 00000000 7588e180 76fb1000 | ||
| 45 | 9e80: 08000000 00000000 00000000 76fb11b8 000000af 760b6cd8 ffffffff 7431d4c0 | ||
| 46 | 9ea0: 000cb1ac 75889000 00000000 00000001 000000b0 00000000 00000000 76fa0da0 | ||
| 47 | 9ec0: 00000000 00000001 00000001 00000000 00000000 7588cb40 00000001 75957ecc | ||
| 48 | 9ee0: 00000001 7ef1fe7c 75953e94 7ef1fedc 00000002 76fa789c 00007530 ac6813c0 | ||
| 49 | 9f00: 00000000 7ef1fcd0 ac6813c0 ac968000 ac3985f0 800d68fc 00000001 ac968000 | ||
| 50 | 9f20: ac969f34 8004efe4 ac4f71d4 6c31d000 00000000 80623fd4 00000000 80623578 | ||
| 51 | 9f40: ac4f71d4 800a3d40 00000001 00000000 ac969f5c 00000003 ac6813c8 00000000 | ||
| 52 | 9f60: 00000001 00007530 00000003 00000000 7ef1fcd0 ac6813c0 ac968000 00000000 | ||
| 53 | 9f80: 00000000 800d6afc ac4f7180 00000000 00002710 00007530 75957e40 00000036 | ||
| 54 | 9fa0: 8000e2c4 8000e140 00002710 00007530 00000003 00007530 7ef1fcd0 01bc3008 | ||
| 55 | 9fc0: 00002710 00007530 75957e40 00000036 01bd2e70 00000001 7ef1fd20 00000000 | ||
| 56 | 9fe0: 759540c4 7ef1fcbc 7593f698 760a0ccc 20010010 00000003 00000000 00000000 | ||
| 57 | [<80623fd4>] (_raw_spin_lock+0x10/0x4c) from [<806235e0>] (rt_spin_lock_slowlock+0x34/0x29c) | ||
| 58 | [<806235e0>] (rt_spin_lock_slowlock+0x34/0x29c) from [<8044e540>] (_QueryProcessPageTable+0x8c/0xdc) | ||
| 59 | [<8044e540>] (_QueryProcessPageTable+0x8c/0xdc) from [<8044f6f4>] (gckOS_GetPhysicalAddress+0x20/0x58) | ||
| 60 | [<8044f6f4>] (gckOS_GetPhysicalAddress+0x20/0x58) from [<804605b8>] (gckHARDWARE_ConvertLogical+0x2c/0x90) | ||
| 61 | [<804605b8>] (gckHARDWARE_ConvertLogical+0x2c/0x90) from [<804607f4>] (gckHARDWARE_Link+0x60/0x104) | ||
| 62 | [<804607f4>] (gckHARDWARE_Link+0x60/0x104) from [<8045f1a0>] (gckCONTEXT_Construct+0x264/0x2bc) | ||
| 63 | [<8045f1a0>] (gckCONTEXT_Construct+0x264/0x2bc) from [<8045661c>] (gckCOMMAND_Attach+0x44/0x88) | ||
| 64 | [<8045661c>] (gckCOMMAND_Attach+0x44/0x88) from [<80454144>] (gckKERNEL_Dispatch+0x358/0x12c8) | ||
| 65 | [<80454144>] (gckKERNEL_Dispatch+0x358/0x12c8) from [<8044d374>] (drv_ioctl+0x120/0x284) | ||
| 66 | [<8044d374>] (drv_ioctl+0x120/0x284) from [<800d68fc>] (do_vfs_ioctl+0x408/0x5d0) | ||
| 67 | [<800d68fc>] (do_vfs_ioctl+0x408/0x5d0) from [<800d6afc>] (SyS_ioctl+0x38/0x64) | ||
| 68 | [<800d6afc>] (SyS_ioctl+0x38/0x64) from [<8000e140>] (ret_fast_syscall+0x0/0x30) | ||
| 69 | Code: e92d4010 e1a04000 e3a00001 ebe8abd7 (e1943f9f) | ||
| 70 | ---[ end trace 0000000000000002 ]--- | ||
| 71 | note: test-qt5[277] exited with preempt_count 1 | ||
| 72 | |||
| 73 | diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h | ||
| 74 | index 6c1dc6c..8c00faf 100644 | ||
| 75 | --- a/include/linux/mm_types.h | ||
| 76 | +++ b/include/linux/mm_types.h | ||
| 77 | @@ -24,7 +24,7 @@ | ||
| 78 | |||
| 79 | struct address_space; | ||
| 80 | |||
| 81 | -#define USE_SPLIT_PTE_PTLOCKS (NR_CPUS >= CONFIG_SPLIT_PTLOCK_CPUS) | ||
| 82 | +#define USE_SPLIT_PTE_PTLOCKS (0) | ||
| 83 | #define USE_SPLIT_PMD_PTLOCKS (USE_SPLIT_PTE_PTLOCKS && \ | ||
| 84 | IS_ENABLED(CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK)) | ||
| 85 | #define ALLOC_SPLIT_PTLOCKS (SPINLOCK_SIZE > BITS_PER_LONG/8) | ||
diff --git a/recipes-kernel/linux/linux-imx-rt-3.14.28/0004-imx-sdma-channel-use-raw-spinlock.patch b/recipes-kernel/linux/linux-imx-rt-3.14.28/0004-imx-sdma-channel-use-raw-spinlock.patch deleted file mode 100644 index da36213cf..000000000 --- a/recipes-kernel/linux/linux-imx-rt-3.14.28/0004-imx-sdma-channel-use-raw-spinlock.patch +++ /dev/null | |||
| @@ -1,95 +0,0 @@ | |||
| 1 | Work around CPU stalls in the imx-sdma driver by replacing spinlocks | ||
| 2 | with raw spinlocks. This prevents preemption during the spinlock's | ||
| 3 | critical section, as is the case on non PREEMPT_RT kernels. | ||
| 4 | |||
| 5 | Without this patch, the following error can occur, for example when | ||
| 6 | using the audio codec on an iMX6Q Sabre SD board: | ||
| 7 | |||
| 8 | INFO: rcu_preempt self-detected stall on CPU { 0} (t=2100 jiffies g=106 c=105 q=93) | ||
| 9 | CPU: 0 PID: 120 Comm: irq/34-sdma Not tainted 3.14.28-rt25-1.0.0_ga+g91cf351 #1 | ||
| 10 | [<80014a8c>] (unwind_backtrace) from [<8001173c>] (show_stack+0x10/0x14) | ||
| 11 | [<8001173c>] (show_stack) from [<806ee750>] (dump_stack+0x7c/0xc8) | ||
| 12 | [<806ee750>] (dump_stack) from [<800771c8>] (rcu_check_callbacks+0x454/0x888) | ||
| 13 | [<800771c8>] (rcu_check_callbacks) from [<80037f28>] (update_process_times+0x40/0x5c) | ||
| 14 | [<80037f28>] (update_process_times) from [<80082230>] (tick_sched_timer+0x4c/0x78) | ||
| 15 | [<80082230>] (tick_sched_timer) from [<8004bf30>] (__run_hrtimer.isra.34+0x74/0x124) | ||
| 16 | [<8004bf30>] (__run_hrtimer.isra.34) from [<8004cbb0>] (hrtimer_interrupt+0x154/0x3ac) | ||
| 17 | [<8004cbb0>] (hrtimer_interrupt) from [<80014464>] (twd_handler+0x30/0x38) | ||
| 18 | [<80014464>] (twd_handler) from [<8006fa2c>] (handle_percpu_devid_irq+0x6c/0x84) | ||
| 19 | [<8006fa2c>] (handle_percpu_devid_irq) from [<8006bc64>] (generic_handle_irq+0x2c/0x3c) | ||
| 20 | [<8006bc64>] (generic_handle_irq) from [<8000ed8c>] (handle_IRQ+0x40/0x90) | ||
| 21 | [<8000ed8c>] (handle_IRQ) from [<8000856c>] (gic_handle_irq+0x2c/0x5c) | ||
| 22 | [<8000856c>] (gic_handle_irq) from [<80012240>] (__irq_svc+0x40/0x84) | ||
| 23 | Exception stack(0xa840feb8 to 0xa840ff00) | ||
| 24 | fea0: a8007a28 00000002 | ||
| 25 | fec0: 00000001 0000a6a6 a80079c0 a8007a28 a83ea080 00000000 a80079c0 a83ea080 | ||
| 26 | fee0: 285190f0 00000000 00000000 a840ff00 8006d04c 806f3070 20030113 ffffffff | ||
| 27 | [<80012240>] (__irq_svc) from [<806f3070>] (_raw_spin_unlock_irq+0x20/0x60) | ||
| 28 | [<806f3070>] (_raw_spin_unlock_irq) from [<8006d04c>] (irq_finalize_oneshot.part.37+0x70/0xcc) | ||
| 29 | [<8006d04c>] (irq_finalize_oneshot.part.37) from [<8006d148>] (irq_forced_thread_fn+0x60/0x64) | ||
| 30 | [<8006d148>] (irq_forced_thread_fn) from [<8006d3dc>] (irq_thread+0x138/0x1a4) | ||
| 31 | [<8006d3dc>] (irq_thread) from [<8004913c>] (kthread+0xbc/0xd4) | ||
| 32 | [<8004913c>] (kthread) from [<8000e538>] (ret_from_fork+0x14/0x3c) | ||
| 33 | |||
| 34 | Upstream-Status: Pending | ||
| 35 | |||
| 36 | Signed-off-by: Dominic Sacré <dominic.sacre@gmx.de> | ||
| 37 | |||
| 38 | diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c | ||
| 39 | index bae2ea8..74ff5a0 100644 | ||
| 40 | --- a/drivers/dma/imx-sdma.c | ||
| 41 | +++ b/drivers/dma/imx-sdma.c | ||
| 42 | @@ -343,7 +343,7 @@ struct sdma_engine { | ||
| 43 | struct dma_device dma_device; | ||
| 44 | struct clk *clk_ipg; | ||
| 45 | struct clk *clk_ahb; | ||
| 46 | - spinlock_t channel_0_lock; | ||
| 47 | + raw_spinlock_t channel_0_lock; | ||
| 48 | u32 script_number; | ||
| 49 | struct sdma_script_start_addrs *script_addrs; | ||
| 50 | const struct sdma_driver_data *drvdata; | ||
| 51 | @@ -593,7 +593,7 @@ static int sdma_load_script(struct sdma_engine *sdma, void *buf, int size, | ||
| 52 | return -ENOMEM; | ||
| 53 | } | ||
| 54 | |||
| 55 | - spin_lock_irqsave(&sdma->channel_0_lock, flags); | ||
| 56 | + raw_spin_lock_irqsave(&sdma->channel_0_lock, flags); | ||
| 57 | |||
| 58 | bd0->mode.command = C0_SETPM; | ||
| 59 | bd0->mode.status = BD_DONE | BD_INTR | BD_WRAP | BD_EXTD; | ||
| 60 | @@ -605,7 +605,7 @@ static int sdma_load_script(struct sdma_engine *sdma, void *buf, int size, | ||
| 61 | |||
| 62 | ret = sdma_run_channel0(sdma); | ||
| 63 | |||
| 64 | - spin_unlock_irqrestore(&sdma->channel_0_lock, flags); | ||
| 65 | + raw_spin_unlock_irqrestore(&sdma->channel_0_lock, flags); | ||
| 66 | |||
| 67 | if (use_iram) | ||
| 68 | gen_pool_free(sdma->iram_pool, (unsigned long)buf_virt, size); | ||
| 69 | @@ -880,7 +880,7 @@ static int sdma_load_context(struct sdma_channel *sdmac) | ||
| 70 | dev_dbg(sdma->dev, "event_mask0 = 0x%08x\n", (u32)sdmac->event_mask[0]); | ||
| 71 | dev_dbg(sdma->dev, "event_mask1 = 0x%08x\n", (u32)sdmac->event_mask[1]); | ||
| 72 | |||
| 73 | - spin_lock_irqsave(&sdma->channel_0_lock, flags); | ||
| 74 | + raw_spin_lock_irqsave(&sdma->channel_0_lock, flags); | ||
| 75 | |||
| 76 | memset(context, 0, sizeof(*context)); | ||
| 77 | context->channel_state.pc = load_address; | ||
| 78 | @@ -906,7 +906,7 @@ static int sdma_load_context(struct sdma_channel *sdmac) | ||
| 79 | bd0->ext_buffer_addr = 2048 + (sizeof(*context) / 4) * channel; | ||
| 80 | ret = sdma_run_channel0(sdma); | ||
| 81 | |||
| 82 | - spin_unlock_irqrestore(&sdma->channel_0_lock, flags); | ||
| 83 | + raw_spin_unlock_irqrestore(&sdma->channel_0_lock, flags); | ||
| 84 | |||
| 85 | return ret; | ||
| 86 | } | ||
| 87 | @@ -1881,7 +1881,7 @@ static int __init sdma_probe(struct platform_device *pdev) | ||
| 88 | if (!sdma) | ||
| 89 | return -ENOMEM; | ||
| 90 | |||
| 91 | - spin_lock_init(&sdma->channel_0_lock); | ||
| 92 | + raw_spin_lock_init(&sdma->channel_0_lock); | ||
| 93 | |||
| 94 | sdma->dev = &pdev->dev; | ||
| 95 | sdma->drvdata = drvdata; | ||
diff --git a/recipes-kernel/linux/linux-imx-rt-3.14.28/0004-mmc-sdhci-esdhc-imx-Fixup-runtime-PM-conditions-duri.patch b/recipes-kernel/linux/linux-imx-rt-3.14.28/0004-mmc-sdhci-esdhc-imx-Fixup-runtime-PM-conditions-duri.patch deleted file mode 100644 index 0d3caa404..000000000 --- a/recipes-kernel/linux/linux-imx-rt-3.14.28/0004-mmc-sdhci-esdhc-imx-Fixup-runtime-PM-conditions-duri.patch +++ /dev/null | |||
| @@ -1,36 +0,0 @@ | |||
| 1 | From 77903c01d8c6c5d2544085ba074aceadc1191d21 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Ulf Hansson <ulf.hansson@linaro.org> | ||
| 3 | Date: Thu, 11 Dec 2014 15:12:25 +0100 | ||
| 4 | Subject: [PATCH 2/2] mmc: sdhci-esdhc-imx: Fixup runtime PM conditions during | ||
| 5 | ->probe() | ||
| 6 | |||
| 7 | By configure runtime PM prior we enable the use of it, we close the gap | ||
| 8 | for strange and unhandled conditions. Moreover it makes us rely on the | ||
| 9 | driver core, after finalized ->probe(), to request an inactive device | ||
| 10 | to become runtime PM idle/suspended, which earlier potentially could | ||
| 11 | happen already at pm_runtime_set_autosuspend_delay(). | ||
| 12 | |||
| 13 | Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org> | ||
| 14 | --- | ||
| 15 | drivers/mmc/host/sdhci-esdhc-imx.c | 2 +- | ||
| 16 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 17 | |||
| 18 | diff --git a/drivers/mmc/host/sdhci-esdhc-imx.c b/drivers/mmc/host/sdhci-esdhc-imx.c | ||
| 19 | index 043866c..10ef824 100644 | ||
| 20 | --- a/drivers/mmc/host/sdhci-esdhc-imx.c | ||
| 21 | +++ b/drivers/mmc/host/sdhci-esdhc-imx.c | ||
| 22 | @@ -1080,10 +1080,10 @@ static int sdhci_esdhc_imx_probe(struct platform_device *pdev) | ||
| 23 | goto disable_clk; | ||
| 24 | |||
| 25 | pm_runtime_set_active(&pdev->dev); | ||
| 26 | - pm_runtime_enable(&pdev->dev); | ||
| 27 | pm_runtime_set_autosuspend_delay(&pdev->dev, 50); | ||
| 28 | pm_runtime_use_autosuspend(&pdev->dev); | ||
| 29 | pm_suspend_ignore_children(&pdev->dev, 1); | ||
| 30 | + pm_runtime_enable(&pdev->dev); | ||
| 31 | |||
| 32 | return 0; | ||
| 33 | |||
| 34 | -- | ||
| 35 | 1.9.3 | ||
| 36 | |||
diff --git a/recipes-kernel/linux/linux-imx-rt-3.14.28/0005-Revert-net-fec-fix-the-warning-found-by-dma-debug.patch b/recipes-kernel/linux/linux-imx-rt-3.14.28/0005-Revert-net-fec-fix-the-warning-found-by-dma-debug.patch deleted file mode 100644 index 5e5721cf6..000000000 --- a/recipes-kernel/linux/linux-imx-rt-3.14.28/0005-Revert-net-fec-fix-the-warning-found-by-dma-debug.patch +++ /dev/null | |||
| @@ -1,100 +0,0 @@ | |||
| 1 | From a2fe37b69d4fe369c284d50927193fed81c238a0 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Fabio Estevam <fabio.estevam@freescale.com> | ||
| 3 | Date: Fri, 13 Mar 2015 14:07:54 -0300 | ||
| 4 | Subject: [PATCH] Revert "net: fec: fix the warning found by dma debug" | ||
| 5 | MIME-Version: 1.0 | ||
| 6 | Content-Type: text/plain; charset=UTF-8 | ||
| 7 | Content-Transfer-Encoding: 8bit | ||
| 8 | |||
| 9 | This reverts commit 2b995f63987013bacde99168218f9c7b252bdcf1. | ||
| 10 | |||
| 11 | ????? ?????? reported the following regression: | ||
| 12 | |||
| 13 | "Commit 2b995f63987013bacde99168218f9c7b252bdcf1 in 4.0.0-rc3 introduces a | ||
| 14 | nasty bug in transmit, corrupting packets. | ||
| 15 | |||
| 16 | To reproduce: | ||
| 17 | |||
| 18 | $ dd if=/dev/zero of=zeros bs=1M count=20 | ||
| 19 | $ md5sum -b zeros | ||
| 20 | 8f4e33f3dc3e414ff94e5fb6905cba8c *zeros | ||
| 21 | |||
| 22 | This checksum is correct. | ||
| 23 | |||
| 24 | Copy file "zeros" to another host with NFS, and it gets corrupted, checksum is | ||
| 25 | changed. | ||
| 26 | File should be big, small amounts of transmit isn't affected. | ||
| 27 | |||
| 28 | I use an i.MX6 Quad board. | ||
| 29 | |||
| 30 | If this commit is reverted, all works fine." | ||
| 31 | |||
| 32 | Reported-by: ????? ?????? <rockford@yandex.ru> | ||
| 33 | Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> | ||
| 34 | Signed-off-by: David S. Miller <davem@davemloft.net> | ||
| 35 | --- | ||
| 36 | drivers/net/ethernet/freescale/fec_main.c | 34 ++++++++++--------------------- | ||
| 37 | 1 file changed, 11 insertions(+), 23 deletions(-) | ||
| 38 | |||
| 39 | diff --git a/drivers/net/ethernet/freescale/fec_main.c b/drivers/net/ethernet/freescale/fec_main.c | ||
| 40 | index 787db50..78e1ce0 100644 | ||
| 41 | --- a/drivers/net/ethernet/freescale/fec_main.c | ||
| 42 | +++ b/drivers/net/ethernet/freescale/fec_main.c | ||
| 43 | @@ -1189,13 +1189,12 @@ static void | ||
| 44 | fec_enet_tx_queue(struct net_device *ndev, u16 queue_id) | ||
| 45 | { | ||
| 46 | struct fec_enet_private *fep; | ||
| 47 | - struct bufdesc *bdp, *bdp_t; | ||
| 48 | + struct bufdesc *bdp; | ||
| 49 | unsigned short status; | ||
| 50 | struct sk_buff *skb; | ||
| 51 | struct fec_enet_priv_tx_q *txq; | ||
| 52 | struct netdev_queue *nq; | ||
| 53 | int index = 0; | ||
| 54 | - int i, bdnum; | ||
| 55 | int entries_free; | ||
| 56 | |||
| 57 | fep = netdev_priv(ndev); | ||
| 58 | @@ -1216,29 +1215,18 @@ fec_enet_tx_queue(struct net_device *ndev, u16 queue_id) | ||
| 59 | if (bdp == txq->cur_tx) | ||
| 60 | break; | ||
| 61 | |||
| 62 | - bdp_t = bdp; | ||
| 63 | - bdnum = 1; | ||
| 64 | - index = fec_enet_get_bd_index(txq->tx_bd_base, bdp_t, fep); | ||
| 65 | - skb = txq->tx_skbuff[index]; | ||
| 66 | - while (!skb) { | ||
| 67 | - bdp_t = fec_enet_get_nextdesc(bdp_t, fep, queue_id); | ||
| 68 | - index = fec_enet_get_bd_index(txq->tx_bd_base, bdp_t, fep); | ||
| 69 | - skb = txq->tx_skbuff[index]; | ||
| 70 | - bdnum++; | ||
| 71 | - } | ||
| 72 | - if (skb_shinfo(skb)->nr_frags && | ||
| 73 | - (status = bdp_t->cbd_sc) & BD_ENET_TX_READY) | ||
| 74 | - break; | ||
| 75 | + index = fec_enet_get_bd_index(txq->tx_bd_base, bdp, fep); | ||
| 76 | |||
| 77 | - for (i = 0; i < bdnum; i++) { | ||
| 78 | - if (!IS_TSO_HEADER(txq, bdp->cbd_bufaddr)) | ||
| 79 | - dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr, | ||
| 80 | - bdp->cbd_datlen, DMA_TO_DEVICE); | ||
| 81 | - bdp->cbd_bufaddr = 0; | ||
| 82 | - if (i < bdnum - 1) | ||
| 83 | - bdp = fec_enet_get_nextdesc(bdp, fep, queue_id); | ||
| 84 | - } | ||
| 85 | + skb = txq->tx_skbuff[index]; | ||
| 86 | txq->tx_skbuff[index] = NULL; | ||
| 87 | + if (!IS_TSO_HEADER(txq, bdp->cbd_bufaddr)) | ||
| 88 | + dma_unmap_single(&fep->pdev->dev, bdp->cbd_bufaddr, | ||
| 89 | + bdp->cbd_datlen, DMA_TO_DEVICE); | ||
| 90 | + bdp->cbd_bufaddr = 0; | ||
| 91 | + if (!skb) { | ||
| 92 | + bdp = fec_enet_get_nextdesc(bdp, fep, queue_id); | ||
| 93 | + continue; | ||
| 94 | + } | ||
| 95 | |||
| 96 | /* Check for errors. */ | ||
| 97 | if (status & (BD_ENET_TX_HB | BD_ENET_TX_LC | | ||
| 98 | -- | ||
| 99 | 1.9.3 | ||
| 100 | |||
diff --git a/recipes-kernel/linux/linux-imx-rt-3.14.28/mx6/defconfig b/recipes-kernel/linux/linux-imx-rt-3.14.28/mx6/defconfig deleted file mode 100644 index 30aabbd39..000000000 --- a/recipes-kernel/linux/linux-imx-rt-3.14.28/mx6/defconfig +++ /dev/null | |||
| @@ -1,413 +0,0 @@ | |||
| 1 | CONFIG_LOCALVERSION="-1.0.0_ga" | ||
| 2 | CONFIG_KERNEL_LZO=y | ||
| 3 | CONFIG_SYSVIPC=y | ||
| 4 | CONFIG_NO_HZ=y | ||
| 5 | CONFIG_HIGH_RES_TIMERS=y | ||
| 6 | CONFIG_LOG_BUF_SHIFT=18 | ||
| 7 | CONFIG_CGROUPS=y | ||
| 8 | CONFIG_RELAY=y | ||
| 9 | CONFIG_BLK_DEV_INITRD=y | ||
| 10 | CONFIG_EXPERT=y | ||
| 11 | CONFIG_KALLSYMS_ALL=y | ||
| 12 | CONFIG_PERF_EVENTS=y | ||
| 13 | # CONFIG_SLUB_DEBUG is not set | ||
| 14 | # CONFIG_COMPAT_BRK is not set | ||
| 15 | CONFIG_MODULES=y | ||
| 16 | CONFIG_MODULE_UNLOAD=y | ||
| 17 | CONFIG_MODVERSIONS=y | ||
| 18 | CONFIG_MODULE_SRCVERSION_ALL=y | ||
| 19 | # CONFIG_BLK_DEV_BSG is not set | ||
| 20 | CONFIG_GPIO_PCA953X=y | ||
| 21 | CONFIG_ARCH_MXC=y | ||
| 22 | CONFIG_MACH_IMX51_DT=y | ||
| 23 | CONFIG_MACH_EUKREA_CPUIMX51SD=y | ||
| 24 | CONFIG_SOC_IMX50=y | ||
| 25 | CONFIG_SOC_IMX53=y | ||
| 26 | CONFIG_SOC_IMX6Q=y | ||
| 27 | CONFIG_SOC_IMX6SL=y | ||
| 28 | CONFIG_SOC_IMX6SX=y | ||
| 29 | CONFIG_SOC_VF610=y | ||
| 30 | # CONFIG_SWP_EMULATE is not set | ||
| 31 | CONFIG_SMP=y | ||
| 32 | CONFIG_VMSPLIT_2G=y | ||
| 33 | CONFIG_PREEMPT_RT_FULL=y | ||
| 34 | CONFIG_AEABI=y | ||
| 35 | CONFIG_HIGHMEM=y | ||
| 36 | CONFIG_CMA=y | ||
| 37 | CONFIG_CMDLINE="noinitrd console=ttymxc0,115200" | ||
| 38 | CONFIG_CPU_FREQ=y | ||
| 39 | CONFIG_CPU_FREQ_GOV_POWERSAVE=y | ||
| 40 | CONFIG_CPU_FREQ_GOV_USERSPACE=y | ||
| 41 | CONFIG_CPU_FREQ_GOV_ONDEMAND=y | ||
| 42 | CONFIG_CPU_FREQ_GOV_INTERACTIVE=y | ||
| 43 | CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y | ||
| 44 | CONFIG_ARM_IMX6Q_CPUFREQ=y | ||
| 45 | CONFIG_CPU_IDLE=y | ||
| 46 | CONFIG_VFP=y | ||
| 47 | CONFIG_NEON=y | ||
| 48 | CONFIG_BINFMT_MISC=m | ||
| 49 | CONFIG_PM_RUNTIME=y | ||
| 50 | CONFIG_PM_DEBUG=y | ||
| 51 | CONFIG_PM_TEST_SUSPEND=y | ||
| 52 | CONFIG_NET=y | ||
| 53 | CONFIG_PACKET=y | ||
| 54 | CONFIG_UNIX=y | ||
| 55 | CONFIG_INET=y | ||
| 56 | CONFIG_IP_PNP=y | ||
| 57 | CONFIG_IP_PNP_DHCP=y | ||
| 58 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | ||
| 59 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | ||
| 60 | # CONFIG_INET_XFRM_MODE_BEET is not set | ||
| 61 | # CONFIG_INET_LRO is not set | ||
| 62 | CONFIG_IPV6=y | ||
| 63 | CONFIG_NETFILTER=y | ||
| 64 | CONFIG_VLAN_8021Q=y | ||
| 65 | CONFIG_LLC2=y | ||
| 66 | CONFIG_CAN=y | ||
| 67 | CONFIG_CAN_FLEXCAN=y | ||
| 68 | CONFIG_CAN_M_CAN=y | ||
| 69 | CONFIG_BT=y | ||
| 70 | CONFIG_BT_RFCOMM=y | ||
| 71 | CONFIG_BT_RFCOMM_TTY=y | ||
| 72 | CONFIG_BT_BNEP=y | ||
| 73 | CONFIG_BT_BNEP_MC_FILTER=y | ||
| 74 | CONFIG_BT_BNEP_PROTO_FILTER=y | ||
| 75 | CONFIG_BT_HIDP=y | ||
| 76 | CONFIG_BT_HCIBTUSB=y | ||
| 77 | CONFIG_BT_HCIBTSDIO=y | ||
| 78 | CONFIG_BT_HCIUART=y | ||
| 79 | CONFIG_BT_HCIUART_H4=y | ||
| 80 | CONFIG_BT_HCIUART_BCSP=y | ||
| 81 | CONFIG_BT_HCIUART_ATH3K=y | ||
| 82 | CONFIG_BT_HCIBCM203X=y | ||
| 83 | CONFIG_BT_ATH3K=y | ||
| 84 | CONFIG_CFG80211=y | ||
| 85 | CONFIG_MAC80211=y | ||
| 86 | CONFIG_DEVTMPFS=y | ||
| 87 | CONFIG_DEVTMPFS_MOUNT=y | ||
| 88 | # CONFIG_STANDALONE is not set | ||
| 89 | CONFIG_DMA_CMA=y | ||
| 90 | CONFIG_CMA_SIZE_MBYTES=320 | ||
| 91 | CONFIG_IMX_WEIM=y | ||
| 92 | CONFIG_CONNECTOR=y | ||
| 93 | CONFIG_MTD=y | ||
| 94 | CONFIG_MTD_CMDLINE_PARTS=y | ||
| 95 | CONFIG_MTD_BLOCK=y | ||
| 96 | CONFIG_MTD_CFI=y | ||
| 97 | CONFIG_MTD_JEDECPROBE=y | ||
| 98 | CONFIG_MTD_CFI_INTELEXT=y | ||
| 99 | CONFIG_MTD_CFI_AMDSTD=y | ||
| 100 | CONFIG_MTD_CFI_STAA=y | ||
| 101 | CONFIG_MTD_PHYSMAP_OF=y | ||
| 102 | CONFIG_MTD_DATAFLASH=y | ||
| 103 | CONFIG_MTD_M25P80=y | ||
| 104 | CONFIG_MTD_SST25L=y | ||
| 105 | CONFIG_MTD_NAND=y | ||
| 106 | CONFIG_MTD_NAND_GPMI_NAND=y | ||
| 107 | CONFIG_MTD_NAND_MXC=y | ||
| 108 | CONFIG_MTD_SPI_NOR=y | ||
| 109 | CONFIG_SPI_FSL_QUADSPI=y | ||
| 110 | CONFIG_MTD_UBI=y | ||
| 111 | CONFIG_BLK_DEV_LOOP=y | ||
| 112 | CONFIG_BLK_DEV_RAM=y | ||
| 113 | CONFIG_BLK_DEV_RAM_SIZE=65536 | ||
| 114 | CONFIG_EEPROM_AT24=y | ||
| 115 | CONFIG_EEPROM_AT25=y | ||
| 116 | # CONFIG_SCSI_PROC_FS is not set | ||
| 117 | CONFIG_BLK_DEV_SD=y | ||
| 118 | CONFIG_SCSI_MULTI_LUN=y | ||
| 119 | CONFIG_SCSI_CONSTANTS=y | ||
| 120 | CONFIG_SCSI_LOGGING=y | ||
| 121 | CONFIG_SCSI_SCAN_ASYNC=y | ||
| 122 | # CONFIG_SCSI_LOWLEVEL is not set | ||
| 123 | CONFIG_ATA=y | ||
| 124 | CONFIG_SATA_AHCI_PLATFORM=y | ||
| 125 | CONFIG_AHCI_IMX=y | ||
| 126 | CONFIG_PATA_IMX=y | ||
| 127 | CONFIG_NETDEVICES=y | ||
| 128 | # CONFIG_NET_VENDOR_BROADCOM is not set | ||
| 129 | CONFIG_CS89x0=y | ||
| 130 | CONFIG_CS89x0_PLATFORM=y | ||
| 131 | # CONFIG_NET_VENDOR_FARADAY is not set | ||
| 132 | # CONFIG_NET_VENDOR_INTEL is not set | ||
| 133 | # CONFIG_NET_VENDOR_MARVELL is not set | ||
| 134 | # CONFIG_NET_VENDOR_MICREL is not set | ||
| 135 | # CONFIG_NET_VENDOR_MICROCHIP is not set | ||
| 136 | # CONFIG_NET_VENDOR_NATSEMI is not set | ||
| 137 | # CONFIG_NET_VENDOR_SEEQ is not set | ||
| 138 | CONFIG_SMC91X=y | ||
| 139 | CONFIG_SMC911X=y | ||
| 140 | CONFIG_SMSC911X=y | ||
| 141 | # CONFIG_NET_VENDOR_STMICRO is not set | ||
| 142 | CONFIG_USB_PEGASUS=m | ||
| 143 | CONFIG_USB_RTL8150=m | ||
| 144 | CONFIG_USB_RTL8152=m | ||
| 145 | CONFIG_USB_USBNET=m | ||
| 146 | CONFIG_USB_NET_CDC_EEM=m | ||
| 147 | CONFIG_ATH_CARDS=y | ||
| 148 | CONFIG_ATH6KL=m | ||
| 149 | CONFIG_ATH6KL_SDIO=m | ||
| 150 | CONFIG_BRCMFMAC=m | ||
| 151 | # CONFIG_INPUT_MOUSEDEV_PSAUX is not set | ||
| 152 | CONFIG_INPUT_EVDEV=y | ||
| 153 | CONFIG_INPUT_EVBUG=m | ||
| 154 | CONFIG_KEYBOARD_GPIO=y | ||
| 155 | CONFIG_KEYBOARD_SNVS_PWRKEY=y | ||
| 156 | CONFIG_KEYBOARD_IMX=y | ||
| 157 | CONFIG_MOUSE_PS2=m | ||
| 158 | CONFIG_MOUSE_PS2_ELANTECH=y | ||
| 159 | CONFIG_INPUT_TOUCHSCREEN=y | ||
| 160 | CONFIG_TOUCHSCREEN_EGALAX=y | ||
| 161 | CONFIG_TOUCHSCREEN_ELAN=y | ||
| 162 | CONFIG_TOUCHSCREEN_MAX11801=y | ||
| 163 | CONFIG_TOUCHSCREEN_MC13783=y | ||
| 164 | CONFIG_TOUCHSCREEN_TSC2007=y | ||
| 165 | CONFIG_TOUCHSCREEN_STMPE=y | ||
| 166 | CONFIG_INPUT_MISC=y | ||
| 167 | CONFIG_INPUT_MMA8450=y | ||
| 168 | CONFIG_INPUT_ISL29023=y | ||
| 169 | CONFIG_SERIO_SERPORT=m | ||
| 170 | # CONFIG_LEGACY_PTYS is not set | ||
| 171 | # CONFIG_DEVKMEM is not set | ||
| 172 | CONFIG_SERIAL_IMX=y | ||
| 173 | CONFIG_SERIAL_IMX_CONSOLE=y | ||
| 174 | CONFIG_SERIAL_FSL_LPUART=y | ||
| 175 | CONFIG_SERIAL_FSL_LPUART_CONSOLE=y | ||
| 176 | CONFIG_FSL_OTP=y | ||
| 177 | # CONFIG_I2C_COMPAT is not set | ||
| 178 | CONFIG_I2C_CHARDEV=y | ||
| 179 | # CONFIG_I2C_HELPER_AUTO is not set | ||
| 180 | CONFIG_I2C_ALGOPCF=m | ||
| 181 | CONFIG_I2C_ALGOPCA=m | ||
| 182 | CONFIG_I2C_IMX=y | ||
| 183 | CONFIG_SPI=y | ||
| 184 | CONFIG_SPI_IMX=y | ||
| 185 | CONFIG_GPIO_SYSFS=y | ||
| 186 | CONFIG_POWER_SUPPLY=y | ||
| 187 | CONFIG_SABRESD_MAX8903=y | ||
| 188 | CONFIG_SENSORS_MAX17135=y | ||
| 189 | CONFIG_SENSORS_MAG3110=y | ||
| 190 | CONFIG_THERMAL=y | ||
| 191 | CONFIG_CPU_THERMAL=y | ||
| 192 | CONFIG_IMX_THERMAL=y | ||
| 193 | CONFIG_DEVICE_THERMAL=y | ||
| 194 | CONFIG_WATCHDOG=y | ||
| 195 | CONFIG_IMX2_WDT=y | ||
| 196 | CONFIG_MFD_DA9052_I2C=y | ||
| 197 | CONFIG_MFD_MC13XXX_SPI=y | ||
| 198 | CONFIG_MFD_MC13XXX_I2C=y | ||
| 199 | CONFIG_MFD_MAX17135=y | ||
| 200 | CONFIG_MFD_SI476X_CORE=y | ||
| 201 | CONFIG_MFD_STMPE=y | ||
| 202 | CONFIG_REGULATOR=y | ||
| 203 | CONFIG_REGULATOR_FIXED_VOLTAGE=y | ||
| 204 | CONFIG_REGULATOR_ANATOP=y | ||
| 205 | CONFIG_REGULATOR_DA9052=y | ||
| 206 | CONFIG_REGULATOR_MAX17135=y | ||
| 207 | CONFIG_REGULATOR_MC13783=y | ||
| 208 | CONFIG_REGULATOR_MC13892=y | ||
| 209 | CONFIG_REGULATOR_PFUZE100=y | ||
| 210 | CONFIG_MEDIA_SUPPORT=y | ||
| 211 | CONFIG_MEDIA_CAMERA_SUPPORT=y | ||
| 212 | CONFIG_MEDIA_RADIO_SUPPORT=y | ||
| 213 | CONFIG_MEDIA_RC_SUPPORT=y | ||
| 214 | CONFIG_RC_DEVICES=y | ||
| 215 | CONFIG_IR_GPIO_CIR=y | ||
| 216 | CONFIG_MEDIA_USB_SUPPORT=y | ||
| 217 | CONFIG_USB_VIDEO_CLASS=m | ||
| 218 | CONFIG_V4L_PLATFORM_DRIVERS=y | ||
| 219 | CONFIG_VIDEO_MXC_OUTPUT=y | ||
| 220 | CONFIG_VIDEO_MXC_CAPTURE=m | ||
| 221 | CONFIG_MXC_CAMERA_OV5640=m | ||
| 222 | CONFIG_MXC_CAMERA_OV5642=m | ||
| 223 | CONFIG_MXC_CAMERA_OV5640_MIPI=m | ||
| 224 | CONFIG_MXC_TVIN_ADV7180=m | ||
| 225 | CONFIG_MXC_IPU_DEVICE_QUEUE_SDC=m | ||
| 226 | CONFIG_VIDEO_MXC_IPU_OUTPUT=y | ||
| 227 | CONFIG_VIDEO_MXC_PXP_V4L2=y | ||
| 228 | CONFIG_VIDEO_MXC_CSI_CAMERA=m | ||
| 229 | CONFIG_MXC_VADC=m | ||
| 230 | CONFIG_SOC_CAMERA=y | ||
| 231 | CONFIG_VIDEO_MX3=y | ||
| 232 | CONFIG_V4L_MEM2MEM_DRIVERS=y | ||
| 233 | CONFIG_VIDEO_CODA=y | ||
| 234 | CONFIG_RADIO_SI476X=y | ||
| 235 | CONFIG_SOC_CAMERA_OV2640=y | ||
| 236 | CONFIG_DRM=y | ||
| 237 | CONFIG_DRM_VIVANTE=y | ||
| 238 | CONFIG_FB=y | ||
| 239 | CONFIG_FB_MXS=y | ||
| 240 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | ||
| 241 | CONFIG_LCD_CLASS_DEVICE=y | ||
| 242 | CONFIG_LCD_L4F00242T03=y | ||
| 243 | CONFIG_LCD_PLATFORM=y | ||
| 244 | CONFIG_BACKLIGHT_CLASS_DEVICE=y | ||
| 245 | CONFIG_BACKLIGHT_PWM=y | ||
| 246 | CONFIG_FB_MXC_SYNC_PANEL=y | ||
| 247 | CONFIG_FB_MXC_LDB=y | ||
| 248 | CONFIG_FB_MXC_MIPI_DSI=y | ||
| 249 | CONFIG_FB_MXC_TRULY_WVGA_SYNC_PANEL=y | ||
| 250 | CONFIG_FB_MXC_HDMI=y | ||
| 251 | CONFIG_FB_MXC_EINK_PANEL=y | ||
| 252 | CONFIG_FB_MXS_SII902X=y | ||
| 253 | CONFIG_FB_MXC_DCIC=m | ||
| 254 | CONFIG_HANNSTAR_CABC=y | ||
| 255 | CONFIG_FRAMEBUFFER_CONSOLE=y | ||
| 256 | CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y | ||
| 257 | CONFIG_LOGO=y | ||
| 258 | CONFIG_SOUND=y | ||
| 259 | CONFIG_SND=y | ||
| 260 | CONFIG_SND_USB_AUDIO=m | ||
| 261 | CONFIG_SND_SOC=y | ||
| 262 | CONFIG_SND_IMX_SOC=y | ||
| 263 | CONFIG_SND_SOC_EUKREA_TLV320=y | ||
| 264 | CONFIG_SND_SOC_IMX_CS42888=y | ||
| 265 | CONFIG_SND_SOC_IMX_WM8962=y | ||
| 266 | CONFIG_SND_SOC_IMX_SGTL5000=y | ||
| 267 | CONFIG_SND_SOC_IMX_MQS=y | ||
| 268 | CONFIG_SND_SOC_IMX_SPDIF=y | ||
| 269 | CONFIG_SND_SOC_IMX_MC13783=y | ||
| 270 | CONFIG_SND_SOC_IMX_HDMI=y | ||
| 271 | CONFIG_SND_SOC_IMX_SI476X=y | ||
| 272 | CONFIG_USB=y | ||
| 273 | CONFIG_USB_EHCI_HCD=y | ||
| 274 | CONFIG_USB_EHCI_MXC=y | ||
| 275 | CONFIG_USB_ACM=m | ||
| 276 | CONFIG_USB_STORAGE=y | ||
| 277 | CONFIG_USB_CHIPIDEA=y | ||
| 278 | CONFIG_USB_CHIPIDEA_UDC=y | ||
| 279 | CONFIG_USB_CHIPIDEA_HOST=y | ||
| 280 | CONFIG_USB_SERIAL=m | ||
| 281 | CONFIG_USB_SERIAL_GENERIC=y | ||
| 282 | CONFIG_USB_SERIAL_FTDI_SIO=m | ||
| 283 | CONFIG_USB_SERIAL_OPTION=m | ||
| 284 | CONFIG_USB_EHSET_TEST_FIXTURE=m | ||
| 285 | CONFIG_NOP_USB_XCEIV=y | ||
| 286 | CONFIG_USB_MXS_PHY=y | ||
| 287 | CONFIG_USB_GADGET=y | ||
| 288 | CONFIG_USB_CONFIGFS=m | ||
| 289 | CONFIG_USB_CONFIGFS_SERIAL=y | ||
| 290 | CONFIG_USB_CONFIGFS_ACM=y | ||
| 291 | CONFIG_USB_CONFIGFS_OBEX=y | ||
| 292 | CONFIG_USB_CONFIGFS_NCM=y | ||
| 293 | CONFIG_USB_CONFIGFS_ECM=y | ||
| 294 | CONFIG_USB_CONFIGFS_ECM_SUBSET=y | ||
| 295 | CONFIG_USB_CONFIGFS_RNDIS=y | ||
| 296 | CONFIG_USB_CONFIGFS_EEM=y | ||
| 297 | CONFIG_USB_CONFIGFS_MASS_STORAGE=y | ||
| 298 | CONFIG_USB_CONFIGFS_F_LB_SS=y | ||
| 299 | CONFIG_USB_CONFIGFS_F_FS=y | ||
| 300 | CONFIG_USB_ZERO=m | ||
| 301 | CONFIG_USB_ETH=m | ||
| 302 | CONFIG_USB_G_NCM=m | ||
| 303 | CONFIG_USB_GADGETFS=m | ||
| 304 | CONFIG_USB_MASS_STORAGE=m | ||
| 305 | CONFIG_USB_G_SERIAL=m | ||
| 306 | CONFIG_MMC=y | ||
| 307 | CONFIG_MMC_UNSAFE_RESUME=y | ||
| 308 | CONFIG_MMC_SDHCI=y | ||
| 309 | CONFIG_MMC_SDHCI_PLTFM=y | ||
| 310 | CONFIG_MMC_SDHCI_ESDHC_IMX=y | ||
| 311 | CONFIG_MXC_IPU=y | ||
| 312 | CONFIG_MXC_GPU_VIV=y | ||
| 313 | CONFIG_MXC_MIPI_CSI2=y | ||
| 314 | CONFIG_MXC_MLB150=m | ||
| 315 | CONFIG_NEW_LEDS=y | ||
| 316 | CONFIG_LEDS_CLASS=y | ||
| 317 | CONFIG_LEDS_GPIO=y | ||
| 318 | CONFIG_LEDS_TRIGGERS=y | ||
| 319 | CONFIG_LEDS_TRIGGER_TIMER=y | ||
| 320 | CONFIG_LEDS_TRIGGER_ONESHOT=y | ||
| 321 | CONFIG_LEDS_TRIGGER_HEARTBEAT=y | ||
| 322 | CONFIG_LEDS_TRIGGER_BACKLIGHT=y | ||
| 323 | CONFIG_LEDS_TRIGGER_GPIO=y | ||
| 324 | CONFIG_RTC_CLASS=y | ||
| 325 | CONFIG_RTC_INTF_DEV_UIE_EMUL=y | ||
| 326 | CONFIG_RTC_DRV_MC13XXX=y | ||
| 327 | CONFIG_RTC_DRV_MXC=y | ||
| 328 | CONFIG_RTC_DRV_SNVS=y | ||
| 329 | CONFIG_DMADEVICES=y | ||
| 330 | CONFIG_MXC_PXP_V2=y | ||
| 331 | CONFIG_IMX_SDMA=y | ||
| 332 | CONFIG_MXS_DMA=y | ||
| 333 | CONFIG_STAGING=y | ||
| 334 | CONFIG_STAGING_MEDIA=y | ||
| 335 | # CONFIG_IOMMU_SUPPORT is not set | ||
| 336 | CONFIG_IIO=y | ||
| 337 | CONFIG_VF610_ADC=y | ||
| 338 | CONFIG_PWM=y | ||
| 339 | CONFIG_PWM_IMX=y | ||
| 340 | CONFIG_EXT2_FS=y | ||
| 341 | CONFIG_EXT2_FS_XATTR=y | ||
| 342 | CONFIG_EXT2_FS_POSIX_ACL=y | ||
| 343 | CONFIG_EXT2_FS_SECURITY=y | ||
| 344 | CONFIG_EXT3_FS=y | ||
| 345 | CONFIG_EXT3_FS_POSIX_ACL=y | ||
| 346 | CONFIG_EXT3_FS_SECURITY=y | ||
| 347 | CONFIG_EXT4_FS=y | ||
| 348 | CONFIG_EXT4_FS_POSIX_ACL=y | ||
| 349 | CONFIG_EXT4_FS_SECURITY=y | ||
| 350 | CONFIG_QUOTA=y | ||
| 351 | CONFIG_QUOTA_NETLINK_INTERFACE=y | ||
| 352 | # CONFIG_PRINT_QUOTA_WARNING is not set | ||
| 353 | CONFIG_AUTOFS4_FS=y | ||
| 354 | CONFIG_FUSE_FS=y | ||
| 355 | CONFIG_ISO9660_FS=m | ||
| 356 | CONFIG_JOLIET=y | ||
| 357 | CONFIG_ZISOFS=y | ||
| 358 | CONFIG_UDF_FS=m | ||
| 359 | CONFIG_MSDOS_FS=m | ||
| 360 | CONFIG_VFAT_FS=y | ||
| 361 | CONFIG_TMPFS=y | ||
| 362 | CONFIG_JFFS2_FS=y | ||
| 363 | CONFIG_UBIFS_FS=y | ||
| 364 | CONFIG_NFS_FS=y | ||
| 365 | CONFIG_NFS_V3_ACL=y | ||
| 366 | CONFIG_NFS_V4=y | ||
| 367 | CONFIG_ROOT_NFS=y | ||
| 368 | CONFIG_NLS_DEFAULT="cp437" | ||
| 369 | CONFIG_NLS_CODEPAGE_437=y | ||
| 370 | CONFIG_NLS_ASCII=y | ||
| 371 | CONFIG_NLS_ISO8859_1=y | ||
| 372 | CONFIG_NLS_ISO8859_15=m | ||
| 373 | CONFIG_NLS_UTF8=y | ||
| 374 | CONFIG_DEBUG_FS=y | ||
| 375 | CONFIG_MAGIC_SYSRQ=y | ||
| 376 | # CONFIG_SCHED_DEBUG is not set | ||
| 377 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
| 378 | # CONFIG_FTRACE is not set | ||
| 379 | CONFIG_SECURITYFS=y | ||
| 380 | CONFIG_CRYPTO_USER=y | ||
| 381 | CONFIG_CRYPTO_TEST=m | ||
| 382 | CONFIG_CRYPTO_GCM=y | ||
| 383 | CONFIG_CRYPTO_CBC=y | ||
| 384 | CONFIG_CRYPTO_CTS=y | ||
| 385 | CONFIG_CRYPTO_LRW=y | ||
| 386 | CONFIG_CRYPTO_XTS=y | ||
| 387 | CONFIG_CRYPTO_MD4=y | ||
| 388 | CONFIG_CRYPTO_MD5=y | ||
| 389 | CONFIG_CRYPTO_MICHAEL_MIC=y | ||
| 390 | CONFIG_CRYPTO_RMD128=y | ||
| 391 | CONFIG_CRYPTO_RMD160=y | ||
| 392 | CONFIG_CRYPTO_RMD256=y | ||
| 393 | CONFIG_CRYPTO_RMD320=y | ||
| 394 | CONFIG_CRYPTO_SHA1=y | ||
| 395 | CONFIG_CRYPTO_SHA512=y | ||
| 396 | CONFIG_CRYPTO_TGR192=y | ||
| 397 | CONFIG_CRYPTO_WP512=y | ||
| 398 | CONFIG_CRYPTO_BLOWFISH=y | ||
| 399 | CONFIG_CRYPTO_CAMELLIA=y | ||
| 400 | CONFIG_CRYPTO_DES=y | ||
| 401 | CONFIG_CRYPTO_TWOFISH=y | ||
| 402 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | ||
| 403 | CONFIG_CRYPTO_DEV_FSL_CAAM=y | ||
| 404 | CONFIG_CRYPTO_DEV_FSL_CAAM_SM=y | ||
| 405 | CONFIG_CRYPTO_DEV_FSL_CAAM_SM_TEST=y | ||
| 406 | CONFIG_CRYPTO_DEV_FSL_CAAM_SECVIO=y | ||
| 407 | CONFIG_CRC_CCITT=m | ||
| 408 | CONFIG_CRC_T10DIF=y | ||
| 409 | CONFIG_CRC7=m | ||
| 410 | CONFIG_LIBCRC32C=m | ||
| 411 | CONFIG_FONTS=y | ||
| 412 | CONFIG_FONT_8x8=y | ||
| 413 | CONFIG_FONT_8x16=y | ||
diff --git a/recipes-kernel/linux/linux-imx-rt_3.14.28.bb b/recipes-kernel/linux/linux-imx-rt_3.14.28.bb deleted file mode 100644 index b9a8bf0c2..000000000 --- a/recipes-kernel/linux/linux-imx-rt_3.14.28.bb +++ /dev/null | |||
| @@ -1,32 +0,0 @@ | |||
| 1 | # Adapted from linux-imx_3.14.28.bb | ||
| 2 | |||
| 3 | SUMMARY = "Linux real-time kernel based on linux-imx" | ||
| 4 | DESCRIPTION = "Linux kernel that is based on Freescale's linux-imx, \ | ||
| 5 | with added real-time capabilities." | ||
| 6 | |||
| 7 | require recipes-kernel/linux/linux-imx.inc | ||
| 8 | require recipes-kernel/linux/linux-dtb.inc | ||
| 9 | |||
| 10 | DEPENDS += "lzop-native bc-native" | ||
| 11 | |||
| 12 | SRCBRANCH = "imx_3.14.28_1.0.0_ga" | ||
| 13 | SRCREV = "91cf351a2afc17ac4a260e4d2ad1e32d00925a1b" | ||
| 14 | LOCALVERSION = "-1.0.0_ga" | ||
| 15 | |||
| 16 | SRC_URI += "\ | ||
| 17 | file://0001-ARM-imx6q-drop-unnecessary-semicolon.patch \ | ||
| 18 | file://0002-ARM-clk-imx6q-fix-video-divider-for-rev-T0-1.0.patch \ | ||
| 19 | file://0003-ARM-imx6sl-Disable-imx6sl-specific-code-when-imx6sl-.patch \ | ||
| 20 | file://0004-mmc-sdhci-esdhc-imx-Fixup-runtime-PM-conditions-duri.patch \ | ||
| 21 | file://0005-Revert-net-fec-fix-the-warning-found-by-dma-debug.patch \ | ||
| 22 | https://www.kernel.org/pub/linux/kernel/projects/rt/3.14/older/patch-3.14.28-rt25.patch.gz;name=rt-patch1 \ | ||
| 23 | file://0001-fix-build.patch \ | ||
| 24 | file://0002-fix-build-with-rt-enabled.patch \ | ||
| 25 | file://0003-no-split-ptlocks.patch \ | ||
| 26 | file://0004-imx-sdma-channel-use-raw-spinlock.patch \ | ||
| 27 | " | ||
| 28 | |||
| 29 | SRC_URI[rt-patch1.md5sum] = "28bfd1e14ccab1ea1fb48f56f982d80c" | ||
| 30 | SRC_URI[rt-patch1.sha256sum] = "4c9bd426cf559a99e169208df5535fcb18ec98daec73f148c88859a7c3333e52" | ||
| 31 | |||
| 32 | COMPATIBLE_MACHINE = "(mx6)" | ||
