summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-12-14ARM: dts: Remove fimd node from exynos5422-odroidxu3-commonMarek Szyprowski
FIMD device is not used at all on Exynos5422-based Odroid XU3-lite and XU4. XU3 board theorethically can support FIMD with DisplayPort connector, but due to hw limitation/design it doesn't work in most cases. It is also not even enabled in XU3 dts file. FIMD node was enabled mainly due to limitation of early Exynos DRM driver, which didn't initialize properly when no FIMD device was available. This node can be now safely removed from XU3-common dtsi and added layer to Odroid XU3 dts, when Display Port driver gets enabled. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Tested-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> [mainline backport of commit 616d289abac9c63f5a5a56c0deb088360f4aed06] Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: I616d289abac9c63f5a5a56c0deb088360f4aed06
2016-12-14ARM: dts: Add async-bridge clock to MFC power domain for Exynos5420Javier Martinez Canillas
The MFC IP is also inter-connected by an Async-Bridge so the CLK_ACLK333 has to be ungated during a power domain switch. Trying to do it when the clock is gated will fail and lead to an imprecise external abort error when the driver tries to access the MFC registers with the PD disabled. For example, if the s5p-mfc module is removed and the MFC PD turned off: [ 186.835606] Power domain power-domain@10044060 disable failed [ 186.835671] s5p-mfc 11000000.codec: Removing 11000000.codec [ 186.837670] Power domain power-domain@10044060 disable failed And when the module is inserted again: [ 2395.176956] s5p_mfc_wait_for_done_dev:34: Interrupt (dev->int_type:0, command:12) timed out [ 2395.177031] s5p_mfc_init_hw:272: Failed to load firmware [ 2395.177384] Unhandled fault: imprecise external abort (0x1406) at 0x00000000 [ 2395.177441] pgd = ec3b4000 [ 2395.177467] [00000000] *pgd=00000000 [ 2395.177507] Internal error: : 1406 [#1] PREEMPT SMP ARM [ 2395.177550] Modules linked in: s5p_mfc mwifiex_sdio mwifiex uvcvideo s5p_jpeg v4l2_mem2mem videobuf2_vmalloc videobuf2_dma_contig videobuf2_memops videobuf2_v4l2 videobuf2_core v4l2_common videodev media [last unloaded: s5p_mfc] [ 2395.177774] CPU: 1 PID: 2382 Comm: v4l_id Tainted: G W 4.6.0-rc6-next-20160502-00010-g7730dc64d2c1-dirty #179 [ 2395.177857] Hardware name: SAMSUNG EXYNOS (Flattened Device Tree) [ 2395.177906] task: ed275500 ti: e6c8c000 task.ti: e6c8c000 [ 2395.177996] PC is at s5p_mfc_reset+0x1c4/0x284 [s5p_mfc] [ 2395.178057] LR is at s5p_mfc_reset+0x1a4/0x284 [s5p_mfc] This patch fixes this issue by adding the CLK_ACLK333 as an Async-Bridge clock for the MFC power domain, so the PD configuration works properly. Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com> Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> [backport of mainline commit 94aed538e032d82287023beb9c59ee80f03a1493] Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: I94aed538e032d82287023beb9c59ee80f03a1493
2016-12-14clk: exynos5420: Set ID for aclk333 gate clockJavier Martinez Canillas
The aclk333 clock needs to be ungated during the MFC power domain switch, so set the clock ID to allow the Exynos power domain logic to lookup this clock if is defined in the MFC PD device tree node. Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com> Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Tested-by: Marek Szyprowski <m.szyprowski@samsung.com> Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com> [backport of mainline commit 34cba900375ec1751a87d3655ad03b9a5b022362] Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: I34cba900375ec1751a87d3655ad03b9a5b022362
2016-12-14s5p-mfc: don't close instance after free OUTPUT buffersayaka
User-space applications can use the VIDIOC_REQBUFS ioctl to determine if a memory mapped, user pointer or DMABUF based I/O is supported by the driver. So a set of VIDIOC_REQBUFS ioctl calls will be made with count 0 and then the real VIDIOC_REQBUFS call with count == n. But for count 0, the driver not only frees the buffer but also closes the MFC instance and s5p_mfc_ctx state is set to MFCINST_FREE. The VIDIOC_REQBUFS handler for the output device checks if the s5p_mfc_ctx state is set to MFCINST_INIT (which happens on an VIDIOC_S_FMT) and fails otherwise. So after a VIDIOC_REQBUFS(n), future VIDIOC_REQBUFS(n) calls will fails unless a VIDIOC_S_FMT ioctl calls happens before the reqbufs. But applications may first set the format and then attempt to determine the I/O methods supported by the driver (for example Gstramer does it) so the state won't be set to MFCINST_INIT again and VIDIOC_REQBUFS will fail. To avoid this issue, only free the buffers on VIDIOC_REQBUFS(0) but don't close the MFC instance to allow future VIDIOC_REQBUFS(n) calls to succeed. [javier: Rewrote changelog to explain the problem more detailed] Signed-off-by: ayaka <ayaka@soulik.info> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com> Acked-by: Nicolas Dufresne <nicolas@collabora.com> Tested-by: Marek Szyprowski <m.szyprowski@samsung.com> Acked-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com> [backport of mainline commit 9bd5d8696fd50a10d830e2ad7f9d4e67e0bbbae2] Signed-of-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: I9bd5d8696fd50a10d830e2ad7f9d4e67e0bbbae2
2016-12-14s5p-mfc: Fix race between s5p_mfc_probe() and s5p_mfc_open()Javier Martinez Canillas
The s5p_mfc_probe() function registers the video devices before all the resources needed by s5p_mfc_open() are correctly initalized. So if s5p_mfc_open() function is called before s5p_mfc_probe() finishes (since the video dev is already registered), a NULL pointer dereference will happen due s5p_mfc_open() accessing uninitialized vars such as the struct s5p_mfc_dev .watchdog_timer and .mfc_ops fields. An example is following BUG caused by add_timer() getting a NULL pointer: [ 45.765374] kernel BUG at kernel/time/timer.c:790! [ 45.765381] Internal error: Oops - BUG: 0 [#1] PREEMPT SMP ARM ... [ 45.766149] [<c016fdf4>] (mod_timer) from [<bf181d18>] (s5p_mfc_open+0x274/0x4d4 [s5p_mfc]) [ 45.766416] [<bf181d18>] (s5p_mfc_open [s5p_mfc]) from [<bf0214a0>] (v4l2_open+0x9c/0x100 [videodev]) [ 45.766547] [<bf0214a0>] (v4l2_open [videodev]) from [<c01e355c>] (chrdev_open+0x9c/0x178) [ 45.766575] [<c01e355c>] (chrdev_open) from [<c01dceb4>] (do_dentry_open+0x1e0/0x300) [ 45.766595] [<c01dceb4>] (do_dentry_open) from [<c01ec2f0>] (path_openat+0x800/0x10d4) [ 45.766610] [<c01ec2f0>] (path_openat) from [<c01ed8b8>] (do_filp_open+0x5c/0xc0) [ 45.766624] [<c01ed8b8>] (do_filp_open) from [<c01de218>] (do_sys_open+0x10c/0x1bc) [ 45.766642] [<c01de218>] (do_sys_open) from [<c01078c0>] (ret_fast_syscall+0x0/0x3c) [ 45.766655] Code: eaffffe3 e3a00001 e28dd008 e8bd81f0 (e7f001f2) Fix it by registering the video devs as the last step in s5p_mfc_probe(). Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com> Tested-by: Marek Szyprowski <m.szyprowski@samsung.com> Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com> [backport of mainline commit 6311f1261f59ce5e51fbe5cc3b5e7737197316ac] Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: I43355e4eeaa913d3b63a41a5621a122f4771982f
2016-12-14mmc: dw_mmc: remove UBSAN warning in dw_mci_setup_bus()Seung-Woo Kim
This patch removes following UBSAN warnings in dw_mci_setup_bus(). UBSAN: Undefined behaviour in drivers/mmc/host/dw_mmc.c:1102:14 shift exponent 250 is too large for 32-bit type 'unsigned int' Call trace: [<ffffff90080908a8>] dump_backtrace+0x0/0x380 [<ffffff9008090c3c>] show_stack+0x14/0x20 [<ffffff90087457b8>] dump_stack+0xe0/0x120 [<ffffff90087b1360>] ubsan_epilogue+0x18/0x68 [<ffffff90087b1a94>] __ubsan_handle_shift_out_of_bounds+0x18c/0x1bc [<ffffff9008d89cb8>] dw_mci_setup_bus+0x3a0/0x438 [...] UBSAN: Undefined behaviour in drivers/mmc/host/dw_mmc.c:1132:27 shift exponent 250 is too large for 32-bit type 'unsigned int' Call trace: [<ffffff90080908a8>] dump_backtrace+0x0/0x380 [<ffffff9008090c3c>] show_stack+0x14/0x20 [<ffffff90087457b8>] dump_stack+0xe0/0x120 [<ffffff90087b1360>] ubsan_epilogue+0x18/0x68 [<ffffff90087b1a94>] __ubsan_handle_shift_out_of_bounds+0x18c/0x1bc [<ffffff9008d89c9c>] dw_mci_setup_bus+0x384/0x438 [...] The warnings are caused because of bit shift which is used to filter spamming message for CONFIG_MMC_CLKGATE, but the config is already removed. So this patch just removes the shift. [Backport for current version.] Change-Id: I1760db1b0e42ddd490aa7539e6c1474a047387c4 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2016-12-14ARM: add support for generic early_ioremap/early_memremapArd Biesheuvel
This enables the generic early_ioremap implementation for ARM. It uses the fixmap region reserved for kmap. Since early_ioremap is only supported before paging_init(), and kmap is only supported afterwards, this is guaranteed not to cause any clashes. Tested-by: Ryan Harkin <ryan.harkin@linaro.org> Reviewed-by: Matt Fleming <matt@codeblueprint.co.uk> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> [backport from mainline to support ioremap on earlycon for arm target] Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Change-Id: I4e2d88b47a4c1f31882632b702df6a627b109308
2016-12-14ARM: 8415/1: early fixmap support for earlyconStefan Agner
Add early fixmap support, initially to support permanent, fixed mapping support for early console. A temporary, early pte is created which is migrated to a permanent mapping in paging_init. This is also needed since the attributes may change as the memory types are initialized. The 3MiB range of fixmap spans two pte tables, but currently only one pte is created for early fixmap support. Re-add FIX_KMAP_BEGIN to the index calculation in highmem.c since the index for kmap does not start at zero anymore. This reverts 4221e2e6b316 ("ARM: 8031/1: fixmap: remove FIX_KMAP_BEGIN and FIX_KMAP_END") to some extent. Cc: Mark Salter <msalter@redhat.com> Cc: Kees Cook <keescook@chromium.org> Cc: Laura Abbott <lauraa@codeaurora.org> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org> Signed-off-by: Rob Herring <robh@kernel.org> Signed-off-by: Stefan Agner <stefan@agner.ch> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> [backport from mainline to support ioremap on earlycon for arm target] Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Change-Id: Ifeee5e94d70d87b74b8e0d2bb3b4d32f6d946a01
2016-12-14bitops.h: correctly handle rol32 with 0 byte shiftSasha Levin
ROL on a 32 bit integer with a shift of 32 or more is undefined and the result is arch-dependent. Avoid this by handling the trivial case of roling by 0 correctly. The trivial solution of checking if shift is 0 breaks gcc's detection of this code as a ROL instruction, which is unacceptable. This bug was reported and fixed in GCC (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57157): The standard rotate idiom, (x << n) | (x >> (32 - n)) is recognized by gcc (for concreteness, I discuss only the case that x is an uint32_t here). However, this is portable C only for n in the range 0 < n < 32. For n == 0, we get x >> 32 which gives undefined behaviour according to the C standard (6.5.7, Bitwise shift operators). To portably support n == 0, one has to write the rotate as something like (x << n) | (x >> ((-n) & 31)) And this is apparently not recognized by gcc. Note that this is broken on older GCCs and will result in slower ROL. Acked-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Sasha Levin <sasha.levin@oracle.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> [Backport from mainline to fix ubsan report] Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Change-Id: I47fcb9807778615fff4972fa92dc7b3143e0ef3d
2016-12-14ubsan: fix tree-wide -Wmaybe-uninitialized false positivesAndrey Ryabinin
-fsanitize=* options makes GCC less smart than usual and increase number of 'maybe-uninitialized' false-positives. So this patch does two things: * Add -Wno-maybe-uninitialized to CFLAGS_UBSAN which will disable all such warnings for instrumented files. * Remove CONFIG_UBSAN_SANITIZE_ALL from all[yes|mod]config builds. So the all[yes|mod]config build goes without -fsanitize=* and still with -Wmaybe-uninitialized. Signed-off-by: Andrey Ryabinin <aryabinin@virtuozzo.com> Reported-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> [backport from mainline for UBSAN] Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Change-Id: Ia32d029540fcb5ebd19a3ac447a3b6333a173f84
2016-12-14arm64: ubsan: select ARCH_HAS_UBSAN_SANITIZE_ALLYang Shi
To enable UBSAN on arm64, ARCH_HAS_UBSAN_SANITIZE_ALL need to be selected. Basic kernel bootup test is passed on arm64 with CONFIG_UBSAN_SANITIZE_ALL enabled. Signed-off-by: Yang Shi <yang.shi@linaro.org> Acked-by: Andrey Ryabinin <aryabinin@virtuozzo.com> Tested-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Catalin Marinas <catalin.marinas@arm.com> [backport from mainline for UBSAN] Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Change-Id: I1876783c89adf8c7f0328434ab41c556440b64ff
2016-12-14ubsan: cosmetic fix to Kconfig textYang Shi
When enabling UBSAN_SANITIZE_ALL, the kernel image size gets increased significantly (~3x). So, it sounds better to have some note in Kconfig. And, fixed a typo. Signed-off-by: Yang Shi <yang.shi@linaro.org> Acked-by: Andrey Ryabinin <aryabinin@virtuozzo.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> [backport from mainline for UBSAN] Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Change-Id: Ibd4183436723b1cad45eab0ffa5b0a8910edc0e6
2016-12-14UBSAN: run-time undefined behavior sanity checkerAndrey Ryabinin
UBSAN uses compile-time instrumentation to catch undefined behavior (UB). Compiler inserts code that perform certain kinds of checks before operations that could cause UB. If check fails (i.e. UB detected) __ubsan_handle_* function called to print error message. So the most of the work is done by compiler. This patch just implements ubsan handlers printing errors. GCC has this capability since 4.9.x [1] (see -fsanitize=undefined option and its suboptions). However GCC 5.x has more checkers implemented [2]. Article [3] has a bit more details about UBSAN in the GCC. [1] - https://gcc.gnu.org/onlinedocs/gcc-4.9.0/gcc/Debugging-Options.html [2] - https://gcc.gnu.org/onlinedocs/gcc/Debugging-Options.html [3] - http://developerblog.redhat.com/2014/10/16/gcc-undefined-behavior-sanitizer-ubsan/ Issues which UBSAN has found thus far are: Found bugs: * out-of-bounds access - 97840cb67ff5 ("netfilter: nfnetlink: fix insufficient validation in nfnetlink_bind") undefined shifts: * d48458d4a768 ("jbd2: use a better hash function for the revoke table") * 10632008b9e1 ("clockevents: Prevent shift out of bounds") * 'x << -1' shift in ext4 - http://lkml.kernel.org/r/<5444EF21.8020501@samsung.com> * undefined rol32(0) - http://lkml.kernel.org/r/<1449198241-20654-1-git-send-email-sasha.levin@oracle.com> * undefined dirty_ratelimit calculation - http://lkml.kernel.org/r/<566594E2.3050306@odin.com> * undefined roundown_pow_of_two(0) - http://lkml.kernel.org/r/<1449156616-11474-1-git-send-email-sasha.levin@oracle.com> * [WONTFIX] undefined shift in __bpf_prog_run - http://lkml.kernel.org/r/<CACT4Y+ZxoR3UjLgcNdUm4fECLMx2VdtfrENMtRRCdgHB2n0bJA@mail.gmail.com> WONTFIX here because it should be fixed in bpf program, not in kernel. signed overflows: * 32a8df4e0b33f ("sched: Fix odd values in effective_load() calculations") * mul overflow in ntp - http://lkml.kernel.org/r/<1449175608-1146-1-git-send-email-sasha.levin@oracle.com> * incorrect conversion into rtc_time in rtc_time64_to_tm() - http://lkml.kernel.org/r/<1449187944-11730-1-git-send-email-sasha.levin@oracle.com> * unvalidated timespec in io_getevents() - http://lkml.kernel.org/r/<CACT4Y+bBxVYLQ6LtOKrKtnLthqLHcw-BMp3aqP3mjdAvr9FULQ@mail.gmail.com> * [NOTABUG] signed overflow in ktime_add_safe() - http://lkml.kernel.org/r/<CACT4Y+aJ4muRnWxsUe1CMnA6P8nooO33kwG-c8YZg=0Xc8rJqw@mail.gmail.com> [akpm@linux-foundation.org: fix unused local warning] [akpm@linux-foundation.org: fix __int128 build woes] Signed-off-by: Andrey Ryabinin <aryabinin@virtuozzo.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Sasha Levin <sasha.levin@oracle.com> Cc: Randy Dunlap <rdunlap@infradead.org> Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk> Cc: Jonathan Corbet <corbet@lwn.net> Cc: Michal Marek <mmarek@suse.cz> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: "H. Peter Anvin" <hpa@zytor.com> Cc: Yury Gribov <y.gribov@samsung.com> Cc: Dmitry Vyukov <dvyukov@google.com> Cc: Konstantin Khlebnikov <koct9i@gmail.com> Cc: Kostya Serebryany <kcc@google.com> Cc: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> [backport from mainline for UBSAN] Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Change-Id: I216cb2d9dbfd9fc9e70b8e4515a0e34fcb68822f
2016-12-14kernel: printk: specify alignment for struct printk_logAndrey Ryabinin
On architectures that have support for efficient unaligned access struct printk_log has 4-byte alignment. Specify alignment attribute in type declaration. The whole point of this patch is to fix deadlock which happening when UBSAN detects unaligned access in printk() thus UBSAN recursively calls printk() with logbuf_lock held by top printk() call. Signed-off-by: Andrey Ryabinin <aryabinin@virtuozzo.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Sasha Levin <sasha.levin@oracle.com> Cc: Randy Dunlap <rdunlap@infradead.org> Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk> Cc: Jonathan Corbet <corbet@lwn.net> Cc: Michal Marek <mmarek@suse.cz> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: "H. Peter Anvin" <hpa@zytor.com> Cc: Yury Gribov <y.gribov@samsung.com> Cc: Dmitry Vyukov <dvyukov@google.com> Cc: Konstantin Khlebnikov <koct9i@gmail.com> Cc: Kostya Serebryany <kcc@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> [Backport from mainline for UBSAN] Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Change-Id: I93d23dec2c1539faf21eb7242ccc328999950c01
2016-12-14input: touchscreen: fts: fix to use touch_id with proper event_id onlySeung-Woo Kim
From event handler, touch_id is used as index of array, but in can be larger than array size, and it causes out of range access for array. From event data of the fts hw, finger touch_id is only valid when event_id is enter/leave/motion pointer event. So this patch fixes to use touch_id as a array index only when the proper event_id is received. This issue is found by ubsan checker like following: ================================================================================ UBSAN: Undefined behaviour in drivers/input/touchscreen/fts_ts.c:342:15 index 13 is out of range for type 'fts_finger [10]' CPU: 1 PID: 98 Comm: irq/150-fts_tou Not tainted 4.1.0-01159-gfb62846 #17 Hardware name: Samsung TM2 board (DT) Call trace: [<ffffffc00008f440>] dump_backtrace+0x0/0x218 [<ffffffc00008f668>] show_stack+0x10/0x20 [<ffffffc00159f378>] dump_stack+0x80/0xfc [<ffffffc00159f518>] ubsan_epilogue+0x10/0x6c [<ffffffc00159fef4>] __ubsan_handle_out_of_bounds+0xc8/0xf4 [<ffffffc000ceb980>] fts_interrupt_handler+0x570/0x678 [<ffffffc000165a98>] irq_thread+0x218/0x378 [<ffffffc0000ee30c>] kthread+0x194/0x240 ================================================================================ Change-Id: I3b2195ee0eee39b16cd05552c19c26072706125d Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2016-12-14drm/panel: s6e3ha2: add VR mode supportInki Dae
This patch adds VR mode support. For this, it creates a new sysfs file which is used by user-space to enable or disable VR mode like below, To enable, echo 1 > /sys/devices/platform/soc/13900000.dsi/13900000.dsi.0/vr To disable, echo 0 > /sys/devices/platform/soc/13900000.dsi/13900000.dsi.0/vr Actually, this patch enables mDNIe feature of Panel device and updates its Display color temperature to 6500K for VR mode. Change-Id: I4e9f15134f57fa200e63ac8fa9d94c5300d6a340 Signed-off-by: Inki Dae <inki.dae@samsung.com>
2016-12-14packaging: add build spec for gbs/obs for tm2Seung-Woo Kim
This patch adds build script for gbs/obs for tm2/tm2e. Change-Id: I4bcd1a9d2b6ae26fd65e54f56c84624335192b8c Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2016-12-14build: add fit image build and mkimage tools to create fit imageSeung-Woo Kim
This patch fixes local build script to make fit image also and x86_32 prebuilt mkimage tool to create fit image. Also boot.img style image creation and tools for boot.img are removed. Change-Id: I7dedb2d40a8a5c672f01271951551b660c5f7013 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2016-12-14drm/exynos: fimc: fix wrong buf_id access for dma channelSeung-Woo Kim
For destination buffers, buf_id is valid only less than maximum dest buffer count. So this patch fixes wrong buf_id access to dma_channel. Change-Id: I4c73ab90a2fc8e57ecb82f277d3d53c2e91b910a Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2016-12-14ARM64: configs: revert defconfig into default and add tizen_tm2_defconfigJaehoon Chung
This patch reverts arm64 defconfig into default defconfig in v4.1 and adds tizen_tm2_defconfig. Also it fixes proper defconfig from local build script. Change-Id: Ic167bb2edc61f4fb25bade2e69e46f9549b7ae4e Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com> Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2016-12-14drm/exynos/mic: fix timing calculationAndrzej Hajda
MIC_BS_SIZE_2D depends only on hactive. Signed-off-by: Andrzej Hajda <a.hajda@samsung.com> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: Ie6120a2b6aef251f0bfb295b41666dac5f9c5e42
2016-12-14drm/panel/s6e3ha2: fix initialization sequenceAndrzej Hajda
Panel datasheet is not clear about it but directly after dsi interface setting and calibration of panel, DSIM/MIC should start transmission, panel should then wait 120ms and finish its initialization. The patch fixes frequent image loss on draco board. Signed-off-by: Andrzej Hajda <a.hajda@samsung.com> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: I194d5bae87bac0e436469d6f5949ee756656b16b
2016-12-14drm/panel/s6e3ha2: fix tear-on sequenceAndrzej Hajda
Tear-On sequence should have one argument. Signed-off-by: Andrzej Hajda <a.hajda@samsung.com> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: I37aa1c368ff691499e225fdd108e168fe0a449ac
2016-12-14drm/panel/s6e3ha2: fix frequency calibration on 1440p displaysAndrzej Hajda
The driver support 1440p and 1600p displays, to support both models correctly it should send different frequency calibration sequence. Signed-off-by: Andrzej Hajda <a.hajda@samsung.com> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: Ic38d4eb357609be0d1a67c655c5c110559b08bd3
2016-12-14drm/panel/s6e3ha2: fix calibration sequenceAndrzej Hajda
Panel TE interrupt was signaled with variable frequency 53-60 fps. This patch fixes it to about 60 fps. Signed-off-by: Andrzej Hajda <a.hajda@samsung.com> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: Icf88caae7eed9ea540158a17a6745a0265948265
2016-12-14soc: exynos: pm_domains: restore old way of getting dt clocksMarek Szyprowski
This restores support for asb clocks, which got lost during core rewrite. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: Idc37a9814bd4825863960dc0e59486e07ddf9139
2016-12-14drm/exynos: gsc: force to use zero buf_id for src and dstMarek Szyprowski
Exynos DRM GSC IPP subdriver supports only processing a single src/dst buffer pair, so don't use any other buf_id to avoid accessing uninitialized buffers (IOMMU page fault). Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: I488bb9ee60e0fe8e711b9c116b04483ac99a66e9
2016-12-14media: s5p-mfc: fix build warningMarek Szyprowski
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: Ib621db7813a80d0a775968c5fadef5f25d0a92f5
2016-12-14media: s5p-mfc: exynos5422 doesn't provide sclk clock to MFC blockMarek Szyprowski
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: Ibfe361bdff955eb446b472a5edcd0df9800c1221
2016-12-14drm/exynos: gsc: normalize invalid buf idx from userspaceHyungwon Hwang
At least in the one frame processing mode which is the only mode supported by the current gsc driver, the buf idx is not meaningful for the driver. Because only one address in the buffer is valid at a time, so it is OK to convert the invalid buf idx from userspace to a valid idx, process the frame, and return the result with original buf idx. Signed-off-by: Hyungwon Hwang <human.hwang@samsung.com> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: I8257cd39e33382f214ce4573e4a79f15ea498aab
2016-12-14Revert "drm/exynos: gsc: always use hw buffer 0 until queue management get ↵Marek Szyprowski
fixed" This reverts commit 937b633eebe825aad14181b168c5b79eccad833d. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: I488bb9ee60e0fe8e711b9c116b04483ac99a66e8
2016-12-14drm/exynos: mixer: enable video overlay plane only when VP is availableMarek Szyprowski
Video overlay plane should be registered only when suitable hardware sub-block (Video Processor) is available. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Reviewed-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk> Signed-off-by: Inki Dae <inki.dae@samsung.com> [backport of mainline commit ab14420125c3cd1111f57731f0f9359c4e64d76a to let Enlightenment to use video/osd graphics plane] Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: Iea4dd02abb408aa188b46f6ed099b0231ef99b6d
2016-12-14net: bcm4358: remove unused config for pci bindingJaehoon Chung
This patch removes unused config for pci binding in bcm4358 driver. Change-Id: Ib82010c667224a9ed323c52f604e3183f62f42a7 Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com> Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2016-12-14arm64: build: add tizen-tm2 its file to create kernel image for u-bootJaehoon Chung
This patch adds tizen-tm2 its file to create kernel image for u-boot. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com> Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2016-12-14ARM: odroidxu3_defconfig: enable usb acm driver configSeung-Woo Kim
This patch enables usb cdc-acm driver config to support /dev/ttyACM# nodes for ACM class devices. Change-Id: I8531129aeabd504bb5f43a34379a1a2b6634a65c Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2016-12-14ARM: odroidxu3_defconfig: enable dm_cryptSeung-Woo Kim
This patch enables dm_crypto config instead of building as a module to manage encrypted disk. Change-Id: Ic1639439a473cc2cd2e5206de282798d2e9f3973 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2016-12-14ARM: odroidxu3_defconfig: enable cp210x usb serial driverSeung-Woo Kim
This patch enables cp210x usb serial driver. It is required to use specific usb serial dongle. Change-Id: I1e0a991ec4e467fd236a1806d672a42faa996081 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2016-12-14avoid not-allowable mutex lock conditionKunhoon Baik
Change-Id: Icd2c90535687558aa3f294471edb865ef178a5b4 Signed-off-by: Kazimierz Krosman <k.krosman@samsung.com>
2016-12-14packaging: enable KDBUS for odroidxu3Paul Osmialowski
CONFIG_KDBUS=y line added to odroidxu3_defconfig in the exact spot where it is usually placed in .config file. Change-Id: I019070af680aa8f1316cd2c2d069731d19f7c5b4 Signed-off-by: Paul Osmialowski <p.osmialowsk@samsung.com>
2016-12-14kdbus: disable internal kdbus policyLukasz Skalski
Possibilities of connections to own, see and talk to well-known names are already restricted by LSM hooks. Change-Id: I62d86a506a85e6c48bdd3e0f8b11f1aa5a918c75 Signed-off-by: Lukasz Skalski <l.skalski@samsung.com>
2016-12-14clk: samsung: exynos5420: Add pll_rate_table and clock id for EPLLChanwoo Choi
This patch add the clock id of EPLL to handle it on devicetree file and the rate tables. EPLL is used as root clock of ASS (Audio Subsystem). Change-Id: Iefcbd5ea4cb911a3b5d75888286926773a98af54 Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
2016-12-14drm/exynos: mixer: add experimental support for 1024x600@43Hz modeMarek Szyprowski
This patch adds experimental configuration data for HDMI PHY for 32MHz pixel clock modes. This enables support for WaveShare 7inch HDMI LCD (C) HDMI panel. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: I2f711ef21ce21da58b8efaf6f6dd28c5e2d2e8fc
2016-12-14drm/exynos: rotator: remove unnecessary cur_buf_idSeung-Woo Kim
After commit 2af026584c81faa37f26b86713d6331ddf70e3f3, 'drm/exynos: ipp: introduce last_buf_id', each driver do not need to handler buf_id for the event. So this patch removes unnecessary cur_buf_id from rotator. Change-Id: Idd80765c41260ae6ce4488e56b0d4beaea76229a Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2016-12-14ARM: DTS: exynos5420: add GSCL block parent clock management to pm domainMarek Szyprowski
Add support for restoring GSCALLER parent clocks configuration when GSCL power domain is turned on. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
2016-12-14clk: samsung: exynos5422: add missing parent GSCL block clocksMarek Szyprowski
This patch adds clocks, which are required for preserving parent clock configuration on GSCALLER power domain on/off. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
2016-12-14clk: samsung: exynos5422: fix MFC clock hierarchy parentMarek Szyprowski
Proper source for MFC block is mout_user_aclk333 (in datasheet named USER_MUX_ACLK_333), not the output of CLKDIV_ACLK_333 MUX. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
2016-12-14ARM: odroidxu3_defconfig: enable UACCESS_WITH_MEMCPYJunghak Sung
Enable CONFIG_UACCESS_WITH_MEMCPY for odroid-xu3. Fix an issue that sometimes TS data is broken when DVB demux pass the data to user-space by using copy_to_user. Change-Id: I7994f193871e70afe31df9c7abdd75b8909b587d Signed-off-by: Junghak Sung <jh1009.sung@samsung.com>
2016-12-14ARM: odroidxu3_defconfig: enable zram featureSeung-Woo Kim
This patch enables zram feature which is used by Tizen resourced. Change-Id: I3f35f1c53ce60d64263064ed9b5b8221e1b63bb4 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
2016-12-14ARM: odroidxu3_defconfig: enable CONFIG_USB_RTL8152Joonyoung Shim
Enable CONFIG_USB_RTL8152 for Odroid-XU4. Change-Id: Iab87b058f01c0b8cd376d1fa4d84099ab412ba9a Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com>
2016-12-14ARM: odroidxu3_defconfig: enable rt2x00 wifi usb driversSeung-Woo Kim
This patch enables rt2x00 wifi usb drivers to support rt5572n. Change-Id: I1d7f9c71e9cb60c83986f4e90cb1edd7557333df Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>