Re: linux-next: suspect commits in the blackfin tree

2016-03-24 Thread Steven Miao
Hi Stephen, It's not a new update, I just setup a virtual machine and imported my korg key, but I removed the for-linus by mistake, then I pushed it back, just ignore it. -steven On 3/24/16, Stephen Rothwell wrote: > Hi all, > > I noticed in the blackfin tree today

Re: linux-next: suspect commits in the blackfin tree

2016-03-24 Thread Steven Miao
Hi Stephen, It's not a new update, I just setup a virtual machine and imported my korg key, but I removed the for-linus by mistake, then I pushed it back, just ignore it. -steven On 3/24/16, Stephen Rothwell wrote: > Hi all, > > I noticed in the blackfin tree today several new commits whose

Re: [PATCH resend 5/5] blackfin: Fix build error

2015-05-06 Thread Steven Miao
: In function 'writel': > include/asm-generic/io.h:163:2: error: > implicit declaration of function 'bfin_write32' > > Reported-by: Geert Uytterhoeven > Fixes: 1a3372bc522ef ("blackfin: io: define __raw_readx/writex with > bfin_readx/writex") > Cc: St

Re: [PATCH resend 5/5] blackfin: Fix build error

2015-05-06 Thread Steven Miao
: error: implicit declaration of function 'bfin_write32' Reported-by: Geert Uytterhoeven ge...@linux-m68k.org Fixes: 1a3372bc522ef (blackfin: io: define __raw_readx/writex with bfin_readx/writex) Cc: Steven Miao real...@gmail.com Signed-off-by: Guenter Roeck li...@roeck-us.net

Re: [PATCH] blackfin: Makefile: Skip reloc overflow issue when COMPILE_TEST enabled

2015-04-24 Thread Steven Miao
On Thu, Apr 23, 2015 at 10:30 PM, Chen Gang wrote: > On 4/23/15 10:51, Steven Miao wrote: >> On Wed, Apr 22, 2015 at 10:32 PM, Chen Gang >> wrote: >>> On 4/22/15 17:00, Steven Miao wrote: >>>> Hi, >>>> >>>> On Thu, A

Re: [PATCH] blackfin: Makefile: Skip reloc overflow issue when COMPILE_TEST enabled

2015-04-24 Thread Steven Miao
On Thu, Apr 23, 2015 at 10:30 PM, Chen Gang xili_gchen_5...@hotmail.com wrote: On 4/23/15 10:51, Steven Miao wrote: On Wed, Apr 22, 2015 at 10:32 PM, Chen Gang xili_gchen_5...@hotmail.com wrote: On 4/22/15 17:00, Steven Miao wrote: Hi, On Thu, Apr 9, 2015 at 5:03 AM, Chen Gang xili_gchen_5

[uclinux-dist-devel] [GIT PULL] Blackfin fixes for v4.1

2015-04-23 Thread Steven Miao
data for soft switch devices on the video extenders bf609: remove softswitch i2c configuration from adv7842 and adv7511 platform data Steven Miao (4): blackfin: defconfigs: cleanup unused CONFIG_MTD_CHAR, add MTD_SPI_NOR for BF537-STAMP blackfin: io: define __raw_readx/writex

[uclinux-dist-devel] [GIT PULL] Blackfin fixes for v4.1

2015-04-23 Thread Steven Miao
data for soft switch devices on the video extenders bf609: remove softswitch i2c configuration from adv7842 and adv7511 platform data Steven Miao (4): blackfin: defconfigs: cleanup unused CONFIG_MTD_CHAR, add MTD_SPI_NOR for BF537-STAMP blackfin: io: define __raw_readx/writex

Re: [PATCH] blackfin: Makefile: Skip reloc overflow issue when COMPILE_TEST enabled

2015-04-22 Thread Steven Miao
On Wed, Apr 22, 2015 at 10:32 PM, Chen Gang wrote: > On 4/22/15 17:00, Steven Miao wrote: >> Hi, >> >> On Thu, Apr 9, 2015 at 5:03 AM, Chen Gang >> wrote: >>> l1_text is at L1_CODE_START (e.g. for bf533, 0xff80). If the kernel >>> is too

Re: [PATCH] blackfin: Makefile: Skip reloc overflow issue when COMPILE_TEST enabled

2015-04-22 Thread Steven Miao
Hi, On Thu, Apr 9, 2015 at 5:03 AM, Chen Gang wrote: > l1_text is at L1_CODE_START (e.g. for bf533, 0xff80). If the kernel > is too big, it may be overwritten, the related issue: > > LD init/built-in.o > init/built-in.o: In function `do_early_param': >

Re: [PATCH v2] blackfin: Wire up missing syscalls

2015-04-22 Thread Steven Miao
Applied. Thanks. On Mon, Apr 13, 2015 at 10:02 PM, Chen Gang wrote: > The related syscalls are below which may cause samples/kdbus building > break in next-20150401 tree, the related information and error: > > CALLscripts/checksyscalls.sh > :1223:2: warning: #warning syscall kcmp not

Re: [PATCH] blackfin: Makefile: Skip reloc overflow issue when COMPILE_TEST enabled

2015-04-22 Thread Steven Miao
On Wed, Apr 22, 2015 at 10:32 PM, Chen Gang xili_gchen_5...@hotmail.com wrote: On 4/22/15 17:00, Steven Miao wrote: Hi, On Thu, Apr 9, 2015 at 5:03 AM, Chen Gang xili_gchen_5...@hotmail.com wrote: l1_text is at L1_CODE_START (e.g. for bf533, 0xff80). If the kernel is too big, it may

Re: [PATCH v2] blackfin: Wire up missing syscalls

2015-04-22 Thread Steven Miao
Applied. Thanks. On Mon, Apr 13, 2015 at 10:02 PM, Chen Gang xili_gchen_5...@hotmail.com wrote: The related syscalls are below which may cause samples/kdbus building break in next-20150401 tree, the related information and error: CALLscripts/checksyscalls.sh stdin:1223:2: warning:

Re: [PATCH] blackfin: Makefile: Skip reloc overflow issue when COMPILE_TEST enabled

2015-04-22 Thread Steven Miao
Hi, On Thu, Apr 9, 2015 at 5:03 AM, Chen Gang xili_gchen_5...@hotmail.com wrote: l1_text is at L1_CODE_START (e.g. for bf533, 0xff80). If the kernel is too big, it may be overwritten, the related issue: LD init/built-in.o init/built-in.o: In function `do_early_param':

Re: [PATCH RFC] blackfin: make timeout HZ independent

2015-02-11 Thread Steven Miao
Applied. Thanks. On Wed, Feb 11, 2015 at 2:52 PM, Nicholas Mc Guire wrote: > The timeout is in jiffies so the hard-coded numeric value becomes HZ > dependent, which is probably not the intent. To resolve this the > timeout is converted with msecs_to_jiffies. > > Signed-off-by: Nicholas Mc Guire

Re: [PATCH RFC] blackfin: make timeout HZ independent

2015-02-11 Thread Steven Miao
Applied. Thanks. On Wed, Feb 11, 2015 at 2:52 PM, Nicholas Mc Guire hof...@osadl.org wrote: The timeout is in jiffies so the hard-coded numeric value becomes HZ dependent, which is probably not the intent. To resolve this the timeout is converted with msecs_to_jiffies. Signed-off-by:

Re: [PATCH] blackfin: mach-common: ints-priority: Remove unused function

2015-01-22 Thread Steven Miao
On Wed, Jan 21, 2015 at 10:11 PM, Jiri Kosina wrote: > On Wed, 21 Jan 2015, Steven Miao wrote: > >> > This doesn't seem to be present in linux-next as of today, so I am picking >> > it up. >> It seems it's still in today's linux-next? >> http://git.kernel.

Re: [PATCH] blackfin: mach-common: ints-priority: Remove unused function

2015-01-22 Thread Steven Miao
On Wed, Jan 21, 2015 at 10:11 PM, Jiri Kosina jkos...@suse.cz wrote: On Wed, 21 Jan 2015, Steven Miao wrote: This doesn't seem to be present in linux-next as of today, so I am picking it up. It seems it's still in today's linux-next? http://git.kernel.org/cgit/linux/kernel/git/next/linux

Re: [PATCH] blackfin: mach-common: ints-priority: Remove unused function

2015-01-20 Thread Steven Miao
On Tue, Jan 20, 2015 at 9:07 PM, Jiri Kosina wrote: > On Sat, 3 Jan 2015, Rickard Strandqvist wrote: > >> Remove the function bfin_sec_resume() that is not used anywhere. >> >> This was partially found by using a static code analysis program called >> cppcheck. >> >> Signed-off-by: Rickard

Re: [PATCH] blackfin: mach-common: ints-priority: Remove unused function

2015-01-20 Thread Steven Miao
Hi Rickard, On Sun, Jan 4, 2015 at 1:01 AM, Rickard Strandqvist wrote: > Remove the function bfin_sec_resume() that is not used anywhere. > > This was partially found by using a static code analysis program called > cppcheck. > > Signed-off-by: Rickard Strandqvist > --- >

Re: [PATCH] BLACKFIN MEDIA DRIVER: rewrite the blackfin style of read/write into common style

2015-01-20 Thread Steven Miao
> unless you > test on one of those variants you wouldn't see any problems relating to this > change > (and possibly not even then if this is a rare race condition). > > You will have to check this with the blackfin architecture maintainer, Steven > Miao > (added to the CC

Re: [PATCH] BLACKFIN MEDIA DRIVER: rewrite the blackfin style of read/write into common style

2015-01-20 Thread Steven Miao
any problems relating to this change (and possibly not even then if this is a rare race condition). You will have to check this with the blackfin architecture maintainer, Steven Miao (added to the CC list). Without the OK of someone who actually understands that architecture

Re: [PATCH] blackfin: mach-common: ints-priority: Remove unused function

2015-01-20 Thread Steven Miao
Hi Rickard, On Sun, Jan 4, 2015 at 1:01 AM, Rickard Strandqvist rickard_strandqv...@spectrumdigital.se wrote: Remove the function bfin_sec_resume() that is not used anywhere. This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard

Re: [PATCH] blackfin: mach-common: ints-priority: Remove unused function

2015-01-20 Thread Steven Miao
On Tue, Jan 20, 2015 at 9:07 PM, Jiri Kosina jkos...@suse.cz wrote: On Sat, 3 Jan 2015, Rickard Strandqvist wrote: Remove the function bfin_sec_resume() that is not used anywhere. This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard

Re: [PATCH 05/18] blackfin/uaccess: fix sparse errors

2014-12-17 Thread Steven Miao
err = -EFAULT; \ > - x = (typeof(*(ptr)))_val; \ > + x = (__force typeof(*(ptr)))_val; \ > _err; \ > }) > > -- > MST >

Re: [PATCH 05/18] blackfin/uaccess: fix sparse errors

2014-12-17 Thread Steven Miao
; \ - x = (typeof(*(ptr)))_val; \ + x = (__force typeof(*(ptr)))_val; \ _err; \ }) -- MST Acked-by: Steven Miao real...@gmail.com -- To unsubscribe from this list: send

Re: [PATCH] arch: blackfin: kernel: setup.c: Cleaning up missing null-terminate in conjunction with strncpy

2014-07-29 Thread Steven Miao
Applied! Thanks. On Sat, Jul 26, 2014 at 9:58 PM, Rickard Strandqvist wrote: > Replacing strncpy with strlcpy to avoid strings that lacks null terminate. > > Signed-off-by: Rickard Strandqvist > --- > arch/blackfin/kernel/setup.c |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >

Re: [PATCH] arch: blackfin: kernel: setup.c: Cleaning up missing null-terminate in conjunction with strncpy

2014-07-29 Thread Steven Miao
Applied! Thanks. On Sat, Jul 26, 2014 at 9:58 PM, Rickard Strandqvist rickard_strandqv...@spectrumdigital.se wrote: Replacing strncpy with strlcpy to avoid strings that lacks null terminate. Signed-off-by: Rickard Strandqvist rickard_strandqv...@spectrumdigital.se ---

[uclinux-dist-devel] [GIT PULL] Blackfin fixes for v3.16-rc7

2014-07-25 Thread Steven Miao
) blackfin fixes for v3.16 Sonic Zhang (1): blackfin: bind different groups of one pinmux function to different state name Steven Miao (5): pm: bf609: cleanup smc

[uclinux-dist-devel] [GIT PULL] Blackfin fixes for v3.16-rc7

2014-07-25 Thread Steven Miao
) blackfin fixes for v3.16 Sonic Zhang (1): blackfin: bind different groups of one pinmux function to different state name Steven Miao (5): pm: bf609: cleanup smc

Re: [PATCH 31/43] blackfin: Use sigsp()

2014-07-24 Thread Steven Miao
Acked-by: Steven Miao Thanks. On Mon, Jul 21, 2014 at 10:03 PM, Richard Weinberger wrote: > From: Richard Weinberger > > Use sigsp() instead of the open coded variant. > > Signed-off-by: Richard Weinberger > --- > arch/blackfin/kernel/signal.c | 14 +++---

Re: [PATCH 04/43] blackfin: Use get_signal() signal_setup_done()

2014-07-24 Thread Steven Miao
Acked-by: Steven Miao Thanks. On Mon, Jul 21, 2014 at 10:02 PM, Richard Weinberger wrote: > From: Richard Weinberger > > Use the more generic functions get_signal() signal_setup_done() > for signal delivery. > > Signed-off-by: Richard Weinberger > --- > arch/black

Re: [PATCH 04/43] blackfin: Use get_signal() signal_setup_done()

2014-07-24 Thread Steven Miao
Acked-by: Steven Miao real...@gmail.com Thanks. On Mon, Jul 21, 2014 at 10:02 PM, Richard Weinberger rich...@sigma-star.at wrote: From: Richard Weinberger rich...@nod.at Use the more generic functions get_signal() signal_setup_done() for signal delivery. Signed-off-by: Richard Weinberger

Re: [PATCH 31/43] blackfin: Use sigsp()

2014-07-24 Thread Steven Miao
Acked-by: Steven Miao real...@gmail.com Thanks. On Mon, Jul 21, 2014 at 10:03 PM, Richard Weinberger rich...@sigma-star.at wrote: From: Richard Weinberger rich...@nod.at Use sigsp() instead of the open coded variant. Signed-off-by: Richard Weinberger rich...@nod.at --- arch/blackfin

Re: Blackfin Build fixs

2014-07-16 Thread Steven Miao
Hi Nick, On Sun, Jul 13, 2014 at 6:18 AM, Nick Krause wrote: > On Fri, Jul 11, 2014 at 12:18 PM, Nick Krause wrote: >> Hey Steven, >> I having been testing what builds are still failing from Steven >> Rothwell's tests and there seem to be two failing >> still for blackfin. I am tracing the

Re: Blackfin Build fixs

2014-07-16 Thread Steven Miao
Hi Nick, On Sun, Jul 13, 2014 at 6:18 AM, Nick Krause xerofo...@gmail.com wrote: On Fri, Jul 11, 2014 at 12:18 PM, Nick Krause xerofo...@gmail.com wrote: Hey Steven, I having been testing what builds are still failing from Steven Rothwell's tests and there seem to be two failing still for

Re: adi-buildroot-de...@lists.sourceforge.net linux-kernel@vger.kernel.org

2014-07-08 Thread Steven Miao
Hi Nick, Thanks, I'll fix these build fails. On Tue, Jul 8, 2014 at 10:34 AM, Nick Krause wrote: > -- Forwarded message -- > From: Nick Krause > Date: Mon, Jul 7, 2014 at 10:27 PM > Subject: adi-buildroot-de...@lists.sourceforge.net > linux-kernel@vger.kernel.org > To:

Re: adi-buildroot-de...@lists.sourceforge.net linux-kernel@vger.kernel.org

2014-07-08 Thread Steven Miao
Hi Nick, Thanks, I'll fix these build fails. On Tue, Jul 8, 2014 at 10:34 AM, Nick Krause xerofo...@gmail.com wrote: -- Forwarded message -- From: Nick Krause xerofo...@gmail.com Date: Mon, Jul 7, 2014 at 10:27 PM Subject: adi-buildroot-de...@lists.sourceforge.net

[uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.16

2014-06-12 Thread Steven Miao
) blackfin updates for Linux 3.16 Brian Norris (1): blackfin: defconfigs: add MTD_SPI_NOR (new dependency for M25P80) Steven Miao (2): bf533: fix build error: add linux/gpio.h Revert "blackfin: dma: current coun

Re: [PATCH v2 09/12] blackfin: defconfigs: add MTD_SPI_NOR (new dependency for M25P80)

2014-06-12 Thread Steven Miao
now-nonexistent CONFIG_MTD_CHAR symbol. > > Signed-off-by: Brian Norris > Cc: Steven Miao > Cc: adi-buildroot-de...@lists.sourceforge.net > Cc: linux-kernel@vger.kernel.org > --- > arch/blackfin/configs/BF526-EZBRD_defconfig| 2 +- > arch/blackfin/configs/BF527-EZKIT-V2_defconfi

Re: [PATCH v2 09/12] blackfin: defconfigs: add MTD_SPI_NOR (new dependency for M25P80)

2014-06-12 Thread Steven Miao
-nonexistent CONFIG_MTD_CHAR symbol. Signed-off-by: Brian Norris computersforpe...@gmail.com Cc: Steven Miao real...@gmail.com Cc: adi-buildroot-de...@lists.sourceforge.net Cc: linux-kernel@vger.kernel.org --- arch/blackfin/configs/BF526-EZBRD_defconfig| 2 +- arch/blackfin/configs/BF527

[uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.16

2014-06-12 Thread Steven Miao
) blackfin updates for Linux 3.16 Brian Norris (1): blackfin: defconfigs: add MTD_SPI_NOR (new dependency for M25P80) Steven Miao (2): bf533: fix build error: add linux/gpio.h Revert blackfin: dma: current count mmr

[PATCH] mm: nommu: per-thread vma cache fix

2014-06-10 Thread Steven Miao (Steven Miao)
From: Steven Miao mm could be removed from current task struct, using previous vma->vm_mm It will crash on blackfin after updated to Linux 3.15. The commit "mm: per-thread vma caching" caused the crash. mm could be removed from current task struct before mmput()->

[PATCH] mm: nommu: per-thread vma cache fix

2014-06-10 Thread Steven Miao (Steven Miao)
From: Steven Miao real...@gmail.com mm could be removed from current task struct, using previous vma-vm_mm It will crash on blackfin after updated to Linux 3.15. The commit mm: per-thread vma caching caused the crash. mm could be removed from current task struct before mmput

Re: Crypto Update for 3.16

2014-06-08 Thread Steven Miao
> without it. So I've re-instated that file. > > But the state of the bfin tree seems to be crap. Somebody should take > a look at what happened here. My suspicion is that commit 3356c99ea392 > was broken by Steven Miao trying to only touch files in arch/blackfin > or something. Ye

Re: Crypto Update for 3.16

2014-06-08 Thread Steven Miao
of the bfin tree seems to be crap. Somebody should take a look at what happened here. My suspicion is that commit 3356c99ea392 was broken by Steven Miao trying to only touch files in arch/blackfin or something. Yes. I should be a move from arch/blackfin to drivers/crypto, sorry for I only formating

Re: [PATCH 1/6] blackfin/ptrace: call find_vma with the mmap_sem held

2014-04-21 Thread Steven Miao
hared) in order to avoid races while iterating through the > vmacache and/or rbtree. Yes, mm->mmap_sem should lock here. Applied, thanks. > > This patch is completely *untested*. > > Signed-off-by: Davidlohr Bueso > Cc: Steven Miao > Cc: adi-buildroot-de...@lists.source

Re: [PATCH 1/6] blackfin/ptrace: call find_vma with the mmap_sem held

2014-04-21 Thread Steven Miao
(shared) in order to avoid races while iterating through the vmacache and/or rbtree. Yes, mm-mmap_sem should lock here. Applied, thanks. This patch is completely *untested*. Signed-off-by: Davidlohr Bueso davidl...@hp.com Cc: Steven Miao real...@gmail.com Cc: adi-buildroot-de

Re: [PATCH RESEND] video: bf54x-lq043fb: fix build error

2014-04-15 Thread Steven Miao
Tomi, On Tue, Apr 15, 2014 at 5:46 PM, Tomi Valkeinen wrote: > On 15/04/14 10:17, Steven Miao wrote: >> From: Steven Miao >> >> include , drop >> > > Thanks, queued for 3.15 fixes. > > Btw, usually it's good to say in the description what kind of

[PATCH RESEND] video: bf54x-lq043fb: fix build error

2014-04-15 Thread Steven Miao
From: Steven Miao include , drop Signed-off-by: Steven Miao --- drivers/video/bf54x-lq043fb.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/bf54x-lq043fb.c b/drivers/video/bf54x-lq043fb.c index 42b8f9d..e2c42ad 100644 --- a/drivers/video/bf54x-lq043fb.c

Re: [PATCH] video: bf54x-lq043fb: fix build error

2014-04-15 Thread Steven Miao
Hi Tomi, On Mon, Apr 14, 2014 at 8:44 PM, Tomi Valkeinen wrote: > On 12/04/14 04:30, Steven Miao wrote: >> From: Steven Miao >> >> should include linux/gpio.h >> >> Signed-off-by: Steven Miao >> --- >> drivers/video/bf54x-lq043fb.c |1 + >&g

Re: [PATCH] video: bf54x-lq043fb: fix build error

2014-04-15 Thread Steven Miao
Hi Tomi, On Mon, Apr 14, 2014 at 8:44 PM, Tomi Valkeinen tomi.valkei...@ti.com wrote: On 12/04/14 04:30, Steven Miao wrote: From: Steven Miao real...@gmail.com should include linux/gpio.h Signed-off-by: Steven Miao real...@gmail.com --- drivers/video/bf54x-lq043fb.c |1 + 1 file

[PATCH RESEND] video: bf54x-lq043fb: fix build error

2014-04-15 Thread Steven Miao
From: Steven Miao real...@gmail.com include linux/gpio.h, drop asm/gpio.h Signed-off-by: Steven Miao real...@gmail.com --- drivers/video/bf54x-lq043fb.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/bf54x-lq043fb.c b/drivers/video/bf54x-lq043fb.c index

Re: [PATCH RESEND] video: bf54x-lq043fb: fix build error

2014-04-15 Thread Steven Miao
Tomi, On Tue, Apr 15, 2014 at 5:46 PM, Tomi Valkeinen tomi.valkei...@ti.com wrote: On 15/04/14 10:17, Steven Miao wrote: From: Steven Miao real...@gmail.com include linux/gpio.h, drop asm/gpio.h Thanks, queued for 3.15 fixes. Btw, usually it's good to say in the description what kind

[PATCH] video: bf54x-lq043fb: fix build error

2014-04-11 Thread Steven Miao
From: Steven Miao should include linux/gpio.h Signed-off-by: Steven Miao --- drivers/video/bf54x-lq043fb.c |1 + 1 file changed, 1 insertion(+) diff --git a/drivers/video/bf54x-lq043fb.c b/drivers/video/bf54x-lq043fb.c index 42b8f9d..d2b54f1 100644 --- a/drivers/video/bf54x-lq043fb.c

[PATCH] spi: bfin5xx: fix build error

2014-04-11 Thread Steven Miao
From: Steven Miao should include linux/gpio.h Signed-off-by: Steven Miao --- drivers/spi/spi-bfin5xx.c |1 + 1 file changed, 1 insertion(+) diff --git a/drivers/spi/spi-bfin5xx.c b/drivers/spi/spi-bfin5xx.c index 55e57c3..ebf720b 100644 --- a/drivers/spi/spi-bfin5xx.c +++ b/drivers/spi

[uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.15

2014-04-11 Thread Steven Miao
of the blackfin folder. blackfin: dma: current count mmr is read only Steven Miao (4): blackfin: portmux: cleanup head file bf54x: drop unuesd HOST status,control,timeout registers bit define macros bf609: clock: drop unused clock bit set/clear functions blackfin: cleanup

[uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.15

2014-04-11 Thread Steven Miao
is read only Steven Miao (4): blackfin: portmux: cleanup head file bf54x: drop unuesd HOST status,control,timeout registers bit define macros bf609: clock: drop unused clock bit set/clear functions blackfin: cleanup board files Thomas Gleixner (1): blackfin:Use generic

[PATCH] spi: bfin5xx: fix build error

2014-04-11 Thread Steven Miao
From: Steven Miao real...@gmail.com should include linux/gpio.h Signed-off-by: Steven Miao real...@gmail.com --- drivers/spi/spi-bfin5xx.c |1 + 1 file changed, 1 insertion(+) diff --git a/drivers/spi/spi-bfin5xx.c b/drivers/spi/spi-bfin5xx.c index 55e57c3..ebf720b 100644 --- a/drivers/spi

[PATCH] video: bf54x-lq043fb: fix build error

2014-04-11 Thread Steven Miao
From: Steven Miao real...@gmail.com should include linux/gpio.h Signed-off-by: Steven Miao real...@gmail.com --- drivers/video/bf54x-lq043fb.c |1 + 1 file changed, 1 insertion(+) diff --git a/drivers/video/bf54x-lq043fb.c b/drivers/video/bf54x-lq043fb.c index 42b8f9d..d2b54f1 100644

Re: [PATCH] blackfin: bf537: fix typo "CONFIG_SND_SOC_ADV80X_MODULE"

2014-03-04 Thread Steven Miao
Hi Paul, On Sat, Mar 1, 2014 at 5:13 AM, Paul Bolle wrote: > Steven, > > On Wed, 2014-02-26 at 18:35 +0800, Steven Miao wrote: >> On Thu, Feb 13, 2014 at 5:40 PM, Paul Bolle wrote: >> >> 1) There are many lines that might be converted to IS_ENABLED() in this >>

Re: [PATCH] blackfin: bf537: fix typo CONFIG_SND_SOC_ADV80X_MODULE

2014-03-04 Thread Steven Miao
Hi Paul, On Sat, Mar 1, 2014 at 5:13 AM, Paul Bolle pebo...@tiscali.nl wrote: Steven, On Wed, 2014-02-26 at 18:35 +0800, Steven Miao wrote: On Thu, Feb 13, 2014 at 5:40 PM, Paul Bolle pebo...@tiscali.nl wrote: 1) There are many lines that might be converted to IS_ENABLED() in this file

Re: [PATCH] blackfin: bf537: fix typo "CONFIG_SND_SOC_ADV80X_MODULE"

2014-02-26 Thread Steven Miao
Hi Paul, On Thu, Feb 13, 2014 at 5:40 PM, Paul Bolle wrote: > [Replaced previous maintainer and list with current maintainer and > list.] > > On Fri, 2013-03-08 at 13:06 +0100, Paul Bolle wrote: >> There's a (rather subtle) typo in "CONFIG_SND_SOC_ADV80X_MODULE". Fix it >> once and for all by

Re: [uclinux-dist-devel] [PATCH] blackfin: bf60x: fix typo "CONFIG_PM_BFIN_WAKE_PA15_POL"

2014-02-26 Thread Steven Miao
Hi Paul, On Thu, Feb 13, 2014 at 5:46 PM, Paul Bolle wrote: > [Added current lists.] > > On Wed, 2013-03-20 at 13:26 +0800, Steven Miao wrote: >> good catch, thanks > > This typo is still present in v3.14-rc2. Was my patch perhaps lost? Sorry for the late reply. I

Re: [patch 10/26] blackfin:Use generic /proc/interrupts implementation

2014-02-26 Thread Steven Miao
Hi Thomas, On Mon, Feb 24, 2014 at 5:40 AM, Thomas Gleixner wrote: > There is nothing special in that blackfin code. Use the core > implementation. > > Signed-off-by: Thomas Gleixner > Cc: Steven Miao > Cc: bfin > --- > arch/blackfin/Kconfig |1 +

Re: [patch 10/26] blackfin:Use generic /proc/interrupts implementation

2014-02-26 Thread Steven Miao
Hi Thomas, On Mon, Feb 24, 2014 at 5:40 AM, Thomas Gleixner t...@linutronix.de wrote: There is nothing special in that blackfin code. Use the core implementation. Signed-off-by: Thomas Gleixner t...@linutronix.de Cc: Steven Miao real...@gmail.com Cc: bfin adi-buildroot-de

Re: [uclinux-dist-devel] [PATCH] blackfin: bf60x: fix typo CONFIG_PM_BFIN_WAKE_PA15_POL

2014-02-26 Thread Steven Miao
Hi Paul, On Thu, Feb 13, 2014 at 5:46 PM, Paul Bolle pebo...@tiscali.nl wrote: [Added current lists.] On Wed, 2013-03-20 at 13:26 +0800, Steven Miao wrote: good catch, thanks This typo is still present in v3.14-rc2. Was my patch perhaps lost? Sorry for the late reply. I'v applied this patch

Re: [PATCH] blackfin: bf537: fix typo CONFIG_SND_SOC_ADV80X_MODULE

2014-02-26 Thread Steven Miao
Hi Paul, On Thu, Feb 13, 2014 at 5:40 PM, Paul Bolle pebo...@tiscali.nl wrote: [Replaced previous maintainer and list with current maintainer and list.] On Fri, 2013-03-08 at 13:06 +0100, Paul Bolle wrote: There's a (rather subtle) typo in CONFIG_SND_SOC_ADV80X_MODULE. Fix it once and for

Re: [PATCH] blackfin: Remove GENERIC_GPIO config option again

2014-02-13 Thread Steven Miao
Hi Paul, On Wed, Feb 12, 2014 at 6:54 PM, Paul Bolle wrote: > The Kconfig symbol GENERIC_GPIO was removed in v3.10. Nothing cares > about it anymore. It popped up somehow in v3.13, so it can be removed > again. > > Signed-off-by: Paul Bolle > --- > Untested, but safe anyhow. > >

Re: blackfin: Kconfig symbol VIDEO_MT9M114?

2014-02-13 Thread Steven Miao
Hi Paul, On Wed, Feb 12, 2014 at 6:18 PM, Paul Bolle wrote: > Steven, Sonic, > > Your commit 54e4ff4d4024 ("blackfin: adi gpio driver and pinctrl driver > support") added a check for the Kconfig macro CONFIG_VIDEO_MT9M114. That > commit was added during the v3.13 release cycle. > > There's no

Re: blackfin: Kconfig symbol VIDEO_MT9M114?

2014-02-13 Thread Steven Miao
Hi Paul, On Wed, Feb 12, 2014 at 6:18 PM, Paul Bolle pebo...@tiscali.nl wrote: Steven, Sonic, Your commit 54e4ff4d4024 (blackfin: adi gpio driver and pinctrl driver support) added a check for the Kconfig macro CONFIG_VIDEO_MT9M114. That commit was added during the v3.13 release cycle.

Re: [PATCH] blackfin: Remove GENERIC_GPIO config option again

2014-02-13 Thread Steven Miao
Hi Paul, On Wed, Feb 12, 2014 at 6:54 PM, Paul Bolle pebo...@tiscali.nl wrote: The Kconfig symbol GENERIC_GPIO was removed in v3.10. Nothing cares about it anymore. It popped up somehow in v3.13, so it can be removed again. Signed-off-by: Paul Bolle pebo...@tiscali.nl --- Untested, but

[uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.14

2014-01-29 Thread Steven Miao
ang Liu (1): 06/18] smp, blackfin: kill SMP single function call interrupt Paul Gortmaker (1): blackfin: delete non-required instances of Sonic Zhang (2): blackfin: bf609: update the anomaly list to Nov 2013 blackfin: Support L1 SRAM parity checking feature on bf60x Stev

[uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.14

2014-01-29 Thread Steven Miao
on bf60x Steven Miao (2): From: Paul Walmsley pwalms...@nvidia.com From: Eunbong Song eunb.s...@samsung.com arch/blackfin/configs/BF527-EZKIT_defconfig |1 + arch/blackfin/configs/BF538-EZKIT_defconfig |1 - arch/blackfin/configs/BF561-ACVILON_defconfig |1 - arch

Re: [PATCH] blackfin: Kill CONFIG_MTD_PARTITIONS

2013-12-02 Thread Steven Miao
Applied. Thanks! On Wed, Nov 27, 2013 at 9:21 AM, Eunbong Song wrote: > > This patch removes CONFIG_MTD_PARTITIONS in config files for blackfin. > Because CONFIG_MTD_PARTITIONS was removed by commit > 6a8a98b22b10f1560d5f90aded4a54234b9b2724. > > > Signed-off-by: Eunbong Song > --- >

Re: [PATCH] blackfin: bf60x: clock: return 0 upon error from clk_round_rate()

2013-12-02 Thread Steven Miao
rather than a signed type, > since some clock sources can generate rates higher than (2^31)-1 Hz. > > Signed-off-by: Paul Walmsley > Cc: Steven Miao > Cc: Bob Liu > Cc: Mike Frysinger > --- > Applies on v3.13-rc1. See also: > > http://marc.info/?l=linux-arm-kernel

Re: [PATCH] blackfin: bf60x: clock: return 0 upon error from clk_round_rate()

2013-12-02 Thread Steven Miao
type rather than a signed type, since some clock sources can generate rates higher than (2^31)-1 Hz. Signed-off-by: Paul Walmsley pwalms...@nvidia.com Cc: Steven Miao real...@gmail.com Cc: Bob Liu lliu...@gmail.com Cc: Mike Frysinger vap...@gentoo.org --- Applies on v3.13-rc1. See also

Re: [PATCH] blackfin: Kill CONFIG_MTD_PARTITIONS

2013-12-02 Thread Steven Miao
Applied. Thanks! On Wed, Nov 27, 2013 at 9:21 AM, Eunbong Song eunb.s...@samsung.com wrote: This patch removes CONFIG_MTD_PARTITIONS in config files for blackfin. Because CONFIG_MTD_PARTITIONS was removed by commit 6a8a98b22b10f1560d5f90aded4a54234b9b2724. Signed-off-by: Eunbong Song

[uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.13

2013-11-15 Thread Steven Miao
blackfin: adi gpio driver and pinctrl driver support blackfin: serial: Add serial port_fer and port_mux early platform resources. Steven Miao (3): blackfin: pinctrl-adi2: code cleanup after using pinctrl-adi2 smp: bf561: and smb_wmb()/smp_rmb() at ipi send/receive

[uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.13

2013-11-15 Thread Steven Miao
blackfin: adi gpio driver and pinctrl driver support blackfin: serial: Add serial port_fer and port_mux early platform resources. Steven Miao (3): blackfin: pinctrl-adi2: code cleanup after using pinctrl-adi2 smp: bf561: and smb_wmb()/smp_rmb() at ipi send/receive

Re: [PATCH 3/3 v4] blackfin: pinctrl-adi2: Enable PINCTRL framework for BF54x and BF60x.

2013-09-22 Thread Steven Miao
Acked-by: Steven Miao On Tue, Sep 3, 2013 at 4:29 PM, Sonic Zhang wrote: > From: Sonic Zhang > > - Remove unused macro MAX_RESOURCES > - Override blackfin legacy peripheral pinmux request and free APIs by > devm_pinctrl_get_select_default() to init the peripheral portmux

Re: [PATCH 2/3 v4] blackfin: gpio: Remove none gpio lib code.

2013-09-22 Thread Steven Miao
Acked-by: Steven Miao On Tue, Sep 3, 2013 at 4:29 PM, Sonic Zhang wrote: > From: Sonic Zhang > > - Remove non gpio lib code from blackfin architecture. > - Limit the lagecy blackfin gpio driver to bf5xx processors only. > - Remove unused definition of the pint power functions.

Re: [PATCH 1/3 v4] pinctrl: ADI PIN control driver for the GPIO controller on bf54x and bf60x.

2013-09-22 Thread Steven Miao
Hi Linus, On Thu, Sep 19, 2013 at 8:45 PM, Linus Walleij wrote: > On Tue, Sep 3, 2013 at 10:28 AM, Sonic Zhang wrote: > >> From: Sonic Zhang >> >> The new ADI GPIO2 controller was introduced since the BF548 and BF60x >> processors. It differs a lot from the old one on BF5xx processors. So, >>

Re: [PATCH 1/3 v4] pinctrl: ADI PIN control driver for the GPIO controller on bf54x and bf60x.

2013-09-22 Thread Steven Miao
Hi Linus, On Thu, Sep 19, 2013 at 8:45 PM, Linus Walleij linus.wall...@linaro.org wrote: On Tue, Sep 3, 2013 at 10:28 AM, Sonic Zhang sonic@gmail.com wrote: From: Sonic Zhang sonic.zh...@analog.com The new ADI GPIO2 controller was introduced since the BF548 and BF60x processors. It

Re: [PATCH 2/3 v4] blackfin: gpio: Remove none gpio lib code.

2013-09-22 Thread Steven Miao
Acked-by: Steven Miao real...@gmail.com On Tue, Sep 3, 2013 at 4:29 PM, Sonic Zhang sonic@gmail.com wrote: From: Sonic Zhang sonic.zh...@analog.com - Remove non gpio lib code from blackfin architecture. - Limit the lagecy blackfin gpio driver to bf5xx processors only. - Remove unused

Re: [PATCH 3/3 v4] blackfin: pinctrl-adi2: Enable PINCTRL framework for BF54x and BF60x.

2013-09-22 Thread Steven Miao
Acked-by: Steven Miao real...@gmail.com On Tue, Sep 3, 2013 at 4:29 PM, Sonic Zhang sonic@gmail.com wrote: From: Sonic Zhang sonic.zh...@analog.com - Remove unused macro MAX_RESOURCES - Override blackfin legacy peripheral pinmux request and free APIs by devm_pinctrl_get_select_default

Re: [uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.12

2013-09-15 Thread Steven Miao
Hi Linus, On Fri, Sep 13, 2013 at 10:29 PM, Linus Torvalds wrote: > On Thu, Sep 12, 2013 at 10:12 PM, Steven Miao wrote: >> arch/blackfin/mach-bf609/Kconfig | 1655 >> > > WTF? This is getting crazy. The blackfin board Kconfig f

Re: [uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.12

2013-09-15 Thread Steven Miao
Hi Linus, On Fri, Sep 13, 2013 at 10:29 PM, Linus Torvalds torva...@linux-foundation.org wrote: On Thu, Sep 12, 2013 at 10:12 PM, Steven Miao real...@kernel.org wrote: arch/blackfin/mach-bf609/Kconfig | 1655 WTF? This is getting crazy. The blackfin

[uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.12

2013-09-12 Thread Steven Miao
options and data. blackfin: Add STMMAC platform data to enable dwmac1000 driver on BF60x. Steven Miao (2): blackfin: scb: Add system crossbar init code. clock: add stmmac clock for ethernet driver arch/blackfin/boot/.gitignore |1 + arch/blackfin/include/asm

[uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.12

2013-09-12 Thread Steven Miao
options and data. blackfin: Add STMMAC platform data to enable dwmac1000 driver on BF60x. Steven Miao (2): blackfin: scb: Add system crossbar init code. clock: add stmmac clock for ethernet driver arch/blackfin/boot/.gitignore |1 + arch/blackfin/include/asm

[PATCH] smp: blackfin: fix check error, using atomic_ops to handle atomic_t type

2013-07-15 Thread Steven Miao
From: Steven Miao Signed-off-by: Geert Uytterhoeven Signed-off-by: Steven Miao --- arch/blackfin/mach-common/smp.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/blackfin/mach-common/smp.c b/arch/blackfin/mach-common/smp.c index 961d839..b5f9ed7 100644

Re: [uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.11

2013-07-15 Thread Steven Miao
On Tue, Jul 16, 2013 at 1:49 AM, Linus Torvalds wrote: > On Mon, Jul 15, 2013 at 10:28 AM, Geert Uytterhoeven > wrote: >> >> but the first one is non-trivial: using xchg() on atomic_t is a bit gross... > > It's also broken. There's no guarantee that an "atomic_t" is just a > value. Now, the old

Re: [uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.11

2013-07-15 Thread Steven Miao
Hi Geert, On Tue, Jul 16, 2013 at 1:28 AM, Geert Uytterhoeven wrote: > Hi Steven, > > On Tue, Jul 9, 2013 at 11:15 AM, Steven Miao wrote: >> Steven Miao (2): >> smp: refine bf561 smpboot code > > Unfortunately this landed too late in -next to notice: > >

Re: [uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.11

2013-07-15 Thread Steven Miao
Hi Geert, On Tue, Jul 16, 2013 at 1:28 AM, Geert Uytterhoeven ge...@linux-m68k.org wrote: Hi Steven, On Tue, Jul 9, 2013 at 11:15 AM, Steven Miao real...@kernel.org wrote: Steven Miao (2): smp: refine bf561 smpboot code Unfortunately this landed too late in -next to notice: arch

Re: [uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.11

2013-07-15 Thread Steven Miao
On Tue, Jul 16, 2013 at 1:49 AM, Linus Torvalds torva...@linux-foundation.org wrote: On Mon, Jul 15, 2013 at 10:28 AM, Geert Uytterhoeven ge...@linux-m68k.org wrote: but the first one is non-trivial: using xchg() on atomic_t is a bit gross... It's also broken. There's no guarantee that an

[PATCH] smp: blackfin: fix check error, using atomic_ops to handle atomic_t type

2013-07-15 Thread Steven Miao
From: Steven Miao real...@gmail.com Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org Signed-off-by: Steven Miao real...@gmail.com --- arch/blackfin/mach-common/smp.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/blackfin/mach-common/smp.c b/arch/blackfin

Re: [uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.11

2013-07-10 Thread Steven Miao
Hi Stephen, On Wed, Jul 10, 2013 at 1:55 PM, Stephen Rothwell wrote: > Hi Steven, > > On Tue, 9 Jul 2013 17:15:30 +0800 Steven Miao wrote: >> >> I've signed up for an kernel.org account and moved the blackfin tree to >> kernel.org for convenience as some develop

Re: [uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.11

2013-07-10 Thread Steven Miao
Hi Stephen, On Wed, Jul 10, 2013 at 1:55 PM, Stephen Rothwell s...@canb.auug.org.au wrote: Hi Steven, On Tue, 9 Jul 2013 17:15:30 +0800 Steven Miao real...@kernel.org wrote: I've signed up for an kernel.org account and moved the blackfin tree to kernel.org for convenience as some

[uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.11

2013-07-09 Thread Steven Miao
Scott Jiang (1): bf609: rename bfin6xx_spi to bfin_spi3 Sonic Zhang (2): kgdb: blackfin: include irq_regs.h in kgdb.c bf609: add cpu revision 0.1 Steven Miao (2): bf609: stmmac: fix build after stmmac_mdio_bus_data changed smp: refine bf561

[uclinux-dist-devel] [GIT PULL] Blackfin updates for 3.11

2013-07-09 Thread Steven Miao
Scott Jiang (1): bf609: rename bfin6xx_spi to bfin_spi3 Sonic Zhang (2): kgdb: blackfin: include irq_regs.h in kgdb.c bf609: add cpu revision 0.1 Steven Miao (2): bf609: stmmac: fix build after stmmac_mdio_bus_data changed smp: refine bf561

  1   2   >