linux-sh.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/4] Add support for new board: SH-2007
@ 2010-06-08 10:08 Hitoshi Mitake
  2010-06-08 17:55 ` Nobuhiro Iwamatsu
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Hitoshi Mitake @ 2010-06-08 10:08 UTC (permalink / raw)
  To: linux-sh

This patch series add support of SH-2007.
I brought these changes from the out-of-tree kernel
provided by the manufacture of this board, ITO Inc.
Website of company: http://www.itonet.co.jp/
The URL of kernel: http://ms-n.org/sh-linux/kernel/

Adding support of new board is trivial,
but as I'll describe, 4/4 of this series contains
some dirty and mysterious fixes.

According to Paul's advice, I rewrote this patch series.
New points are described in each patch.
Request for comments!

Hitoshi Mitake (4):
  Add the directory mach-sh2007 for SH-2007 board support
  Add sh2007_defconfig for default configuration of SH-2007
  Add Kconfig and Makefile for SH-2007 support
  Modify sh-sci.h to adopt specific serial behaviour of SH-2007

 arch/sh/Makefile                    |    1 +
 arch/sh/boards/Kconfig              |   11 +
 arch/sh/boards/mach-sh2007/Makefile |    1 +
 arch/sh/boards/mach-sh2007/setup.c  |  314 ++++++++
 arch/sh/configs/sh2007_defconfig    | 1482 +++++++++++++++++++++++++++++++++++
 drivers/serial/sh-sci.h             |   17 +-
 6 files changed, 1822 insertions(+), 4 deletions(-)
 create mode 100644 arch/sh/boards/mach-sh2007/Makefile
 create mode 100644 arch/sh/boards/mach-sh2007/setup.c
 create mode 100644 arch/sh/configs/sh2007_defconfig


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2 0/4] Add support for new board: SH-2007
  2010-06-08 10:08 [PATCH v2 0/4] Add support for new board: SH-2007 Hitoshi Mitake
@ 2010-06-08 17:55 ` Nobuhiro Iwamatsu
  2010-06-08 17:58 ` Nobuhiro Iwamatsu
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Nobuhiro Iwamatsu @ 2010-06-08 17:55 UTC (permalink / raw)
  To: linux-sh

Hi,

2010/6/8 Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>:
> This patch series add support of SH-2007.
> I brought these changes from the out-of-tree kernel
> provided by the manufacture of this board, ITO Inc.
> Website of company: http://www.itonet.co.jp/
> The URL of kernel: http://ms-n.org/sh-linux/kernel/
>
> Adding support of new board is trivial,
> but as I'll describe, 4/4 of this series contains
> some dirty and mysterious fixes.
>
> According to Paul's advice, I rewrote this patch series.
> New points are described in each patch.
> Request for comments!
>
> Hitoshi Mitake (4):
>  Add the directory mach-sh2007 for SH-2007 board support
>  Add sh2007_defconfig for default configuration of SH-2007
>  Add Kconfig and Makefile for SH-2007 support
>  Modify sh-sci.h to adopt specific serial behaviour of SH-2007
>
>  arch/sh/Makefile                    |    1 +
>  arch/sh/boards/Kconfig              |   11 +
>  arch/sh/boards/mach-sh2007/Makefile |    1 +
>  arch/sh/boards/mach-sh2007/setup.c  |  314 ++++++++
>  arch/sh/configs/sh2007_defconfig    | 1482 +++++++++++++++++++++++++++++++++++
>  drivers/serial/sh-sci.h             |   17 +-
>  6 files changed, 1822 insertions(+), 4 deletions(-)
>  create mode 100644 arch/sh/boards/mach-sh2007/Makefile
>  create mode 100644 arch/sh/boards/mach-sh2007/setup.c
>  create mode 100644 arch/sh/configs/sh2007_defconfig

You forgot to update tools/mach-types.

Subject: [PATCH] sh: Add sh2007 board to tools/mach-types

Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
---
 arch/sh/tools/mach-types |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/sh/tools/mach-types b/arch/sh/tools/mach-types
index b25aa55..e563353 100644
--- a/arch/sh/tools/mach-types
+++ b/arch/sh/tools/mach-types
@@ -60,3 +60,4 @@ ESPT			SH_ESPT
 POLARIS			SH_POLARIS
 KFR2R09			SH_KFR2R09
 ECOVEC			SH_ECOVEC
+SH2007			SH_2007
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v2 0/4] Add support for new board: SH-2007
  2010-06-08 10:08 [PATCH v2 0/4] Add support for new board: SH-2007 Hitoshi Mitake
  2010-06-08 17:55 ` Nobuhiro Iwamatsu
@ 2010-06-08 17:58 ` Nobuhiro Iwamatsu
  2010-06-10  3:29 ` Hitoshi Mitake
  2010-06-10  4:22 ` Nobuhiro Iwamatsu
  3 siblings, 0 replies; 5+ messages in thread
From: Nobuhiro Iwamatsu @ 2010-06-08 17:58 UTC (permalink / raw)
  To: linux-sh

2010/6/9 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>:
> Hi,
>
> 2010/6/8 Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>:
>> This patch series add support of SH-2007.
>> I brought these changes from the out-of-tree kernel
>> provided by the manufacture of this board, ITO Inc.
>> Website of company: http://www.itonet.co.jp/
>> The URL of kernel: http://ms-n.org/sh-linux/kernel/
>>
>> Adding support of new board is trivial,
>> but as I'll describe, 4/4 of this series contains
>> some dirty and mysterious fixes.
>>
>> According to Paul's advice, I rewrote this patch series.
>> New points are described in each patch.
>> Request for comments!
>>
>> Hitoshi Mitake (4):
>>  Add the directory mach-sh2007 for SH-2007 board support
>>  Add sh2007_defconfig for default configuration of SH-2007
>>  Add Kconfig and Makefile for SH-2007 support
>>  Modify sh-sci.h to adopt specific serial behaviour of SH-2007
>>
>>  arch/sh/Makefile                    |    1 +
>>  arch/sh/boards/Kconfig              |   11 +
>>  arch/sh/boards/mach-sh2007/Makefile |    1 +
>>  arch/sh/boards/mach-sh2007/setup.c  |  314 ++++++++
>>  arch/sh/configs/sh2007_defconfig    | 1482 +++++++++++++++++++++++++++++++++++
>>  drivers/serial/sh-sci.h             |   17 +-
>>  6 files changed, 1822 insertions(+), 4 deletions(-)
>>  create mode 100644 arch/sh/boards/mach-sh2007/Makefile
>>  create mode 100644 arch/sh/boards/mach-sh2007/setup.c
>>  create mode 100644 arch/sh/configs/sh2007_defconfig
>
> You forgot to update tools/mach-types.
>
> Subject: [PATCH] sh: Add sh2007 board to tools/mach-types
>
> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
> ---
>  arch/sh/tools/mach-types |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/arch/sh/tools/mach-types b/arch/sh/tools/mach-types
> index b25aa55..e563353 100644
> --- a/arch/sh/tools/mach-types
> +++ b/arch/sh/tools/mach-types
> @@ -60,3 +60,4 @@ ESPT                  SH_ESPT
>  POLARIS                        SH_POLARIS
>  KFR2R09                        SH_KFR2R09
>  ECOVEC                 SH_ECOVEC
> +SH2007                 SH_2007
> --
> 1.7.1
>
update patch.
---

diff --git a/arch/sh/tools/mach-types b/arch/sh/tools/mach-types
index b25aa55..e563353 100644
--- a/arch/sh/tools/mach-types
+++ b/arch/sh/tools/mach-types
@@ -60,3 +60,4 @@ ESPT			SH_ESPT
 POLARIS			SH_POLARIS
 KFR2R09			SH_KFR2R09
 ECOVEC			SH_ECOVEC
+SH2007			SH_SH2007

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v2 0/4] Add support for new board: SH-2007
  2010-06-08 10:08 [PATCH v2 0/4] Add support for new board: SH-2007 Hitoshi Mitake
  2010-06-08 17:55 ` Nobuhiro Iwamatsu
  2010-06-08 17:58 ` Nobuhiro Iwamatsu
@ 2010-06-10  3:29 ` Hitoshi Mitake
  2010-06-10  4:22 ` Nobuhiro Iwamatsu
  3 siblings, 0 replies; 5+ messages in thread
From: Hitoshi Mitake @ 2010-06-10  3:29 UTC (permalink / raw)
  To: linux-sh

On 06/09/10 02:58, Nobuhiro Iwamatsu wrote:
 > 2010/6/9 Nobuhiro Iwamatsu<iwamatsu@nigauri.org>:
 >> Hi,
 >>
 >> 2010/6/8 Hitoshi Mitake<mitake@dcl.info.waseda.ac.jp>:
 >>> This patch series add support of SH-2007.
 >>> I brought these changes from the out-of-tree kernel
 >>> provided by the manufacture of this board, ITO Inc.
 >>> Website of company: http://www.itonet.co.jp/
 >>> The URL of kernel: http://ms-n.org/sh-linux/kernel/
 >>>
 >>> Adding support of new board is trivial,
 >>> but as I'll describe, 4/4 of this series contains
 >>> some dirty and mysterious fixes.
 >>>
 >>> According to Paul's advice, I rewrote this patch series.
 >>> New points are described in each patch.
 >>> Request for comments!
 >>>
 >>> Hitoshi Mitake (4):
 >>>   Add the directory mach-sh2007 for SH-2007 board support
 >>>   Add sh2007_defconfig for default configuration of SH-2007
 >>>   Add Kconfig and Makefile for SH-2007 support
 >>>   Modify sh-sci.h to adopt specific serial behaviour of SH-2007
 >>>
 >>>   arch/sh/Makefile                    |    1 +
 >>>   arch/sh/boards/Kconfig              |   11 +
 >>>   arch/sh/boards/mach-sh2007/Makefile |    1 +
 >>>   arch/sh/boards/mach-sh2007/setup.c  |  314 ++++++++
 >>>   arch/sh/configs/sh2007_defconfig    | 1482 
+++++++++++++++++++++++++++++++++++
 >>>   drivers/serial/sh-sci.h             |   17 +-
 >>>   6 files changed, 1822 insertions(+), 4 deletions(-)
 >>>   create mode 100644 arch/sh/boards/mach-sh2007/Makefile
 >>>   create mode 100644 arch/sh/boards/mach-sh2007/setup.c
 >>>   create mode 100644 arch/sh/configs/sh2007_defconfig
 >>
 >> You forgot to update tools/mach-types.
 >>
 >> Subject: [PATCH] sh: Add sh2007 board to tools/mach-types
 >>
 >> Signed-off-by: Nobuhiro Iwamatsu<iwamatsu@nigauri.org>
 >> ---
 >>   arch/sh/tools/mach-types |    1 +
 >>   1 files changed, 1 insertions(+), 0 deletions(-)
 >>
 >> diff --git a/arch/sh/tools/mach-types b/arch/sh/tools/mach-types
 >> index b25aa55..e563353 100644
 >> --- a/arch/sh/tools/mach-types
 >> +++ b/arch/sh/tools/mach-types
 >> @@ -60,3 +60,4 @@ ESPT                  SH_ESPT
 >>   POLARIS                        SH_POLARIS
 >>   KFR2R09                        SH_KFR2R09
 >>   ECOVEC                 SH_ECOVEC
 >> +SH2007                 SH_2007
 >> --
 >> 1.7.1
 >>
 > update patch.
 > ---
 >
 > diff --git a/arch/sh/tools/mach-types b/arch/sh/tools/mach-types
 > index b25aa55..e563353 100644
 > --- a/arch/sh/tools/mach-types
 > +++ b/arch/sh/tools/mach-types
 > @@ -60,3 +60,4 @@ ESPT			SH_ESPT
 >   POLARIS			SH_POLARIS
 >   KFR2R09			SH_KFR2R09
 >   ECOVEC			SH_ECOVEC
 > +SH2007			SH_SH2007

Hi Iwamatsu-san,

Thanks for your patch!
In fact, I didn't know about mach-types.
Can I take your patch in my v3 series?

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2 0/4] Add support for new board: SH-2007
  2010-06-08 10:08 [PATCH v2 0/4] Add support for new board: SH-2007 Hitoshi Mitake
                   ` (2 preceding siblings ...)
  2010-06-10  3:29 ` Hitoshi Mitake
@ 2010-06-10  4:22 ` Nobuhiro Iwamatsu
  3 siblings, 0 replies; 5+ messages in thread
From: Nobuhiro Iwamatsu @ 2010-06-10  4:22 UTC (permalink / raw)
  To: linux-sh

2010/6/10 Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>:
> On 06/09/10 02:58, Nobuhiro Iwamatsu wrote:
>> 2010/6/9 Nobuhiro Iwamatsu<iwamatsu@nigauri.org>:
>>> Hi,
>>>
>>> 2010/6/8 Hitoshi Mitake<mitake@dcl.info.waseda.ac.jp>:
>>>> This patch series add support of SH-2007.
>>>> I brought these changes from the out-of-tree kernel
>>>> provided by the manufacture of this board, ITO Inc.
>>>> Website of company: http://www.itonet.co.jp/
>>>> The URL of kernel: http://ms-n.org/sh-linux/kernel/
>>>>
>>>> Adding support of new board is trivial,
>>>> but as I'll describe, 4/4 of this series contains
>>>> some dirty and mysterious fixes.
>>>>
>>>> According to Paul's advice, I rewrote this patch series.
>>>> New points are described in each patch.
>>>> Request for comments!
>>>>
>>>> Hitoshi Mitake (4):
>>>>   Add the directory mach-sh2007 for SH-2007 board support
>>>>   Add sh2007_defconfig for default configuration of SH-2007
>>>>   Add Kconfig and Makefile for SH-2007 support
>>>>   Modify sh-sci.h to adopt specific serial behaviour of SH-2007
>>>>
>>>>   arch/sh/Makefile                    |    1 +
>>>>   arch/sh/boards/Kconfig              |   11 +
>>>>   arch/sh/boards/mach-sh2007/Makefile |    1 +
>>>>   arch/sh/boards/mach-sh2007/setup.c  |  314 ++++++++
>>>>   arch/sh/configs/sh2007_defconfig    | 1482
>>>> +++++++++++++++++++++++++++++++++++
>>>>   drivers/serial/sh-sci.h             |   17 +-
>>>>   6 files changed, 1822 insertions(+), 4 deletions(-)
>>>>   create mode 100644 arch/sh/boards/mach-sh2007/Makefile
>>>>   create mode 100644 arch/sh/boards/mach-sh2007/setup.c
>>>>   create mode 100644 arch/sh/configs/sh2007_defconfig
>>>
>>> You forgot to update tools/mach-types.
>>>
>>> Subject: [PATCH] sh: Add sh2007 board to tools/mach-types
>>>
>>> Signed-off-by: Nobuhiro Iwamatsu<iwamatsu@nigauri.org>
>>> ---
>>>   arch/sh/tools/mach-types |    1 +
>>>   1 files changed, 1 insertions(+), 0 deletions(-)
>>>
>>> diff --git a/arch/sh/tools/mach-types b/arch/sh/tools/mach-types
>>> index b25aa55..e563353 100644
>>> --- a/arch/sh/tools/mach-types
>>> +++ b/arch/sh/tools/mach-types
>>> @@ -60,3 +60,4 @@ ESPT                  SH_ESPT
>>>   POLARIS                        SH_POLARIS
>>>   KFR2R09                        SH_KFR2R09
>>>   ECOVEC                 SH_ECOVEC
>>> +SH2007                 SH_2007
>>> --
>>> 1.7.1
>>>
>> update patch.
>> ---
>>
>> diff --git a/arch/sh/tools/mach-types b/arch/sh/tools/mach-types
>> index b25aa55..e563353 100644
>> --- a/arch/sh/tools/mach-types
>> +++ b/arch/sh/tools/mach-types
>> @@ -60,3 +60,4 @@ ESPT                        SH_ESPT
>>   POLARIS                     SH_POLARIS
>>   KFR2R09                     SH_KFR2R09
>>   ECOVEC                      SH_ECOVEC
>> +SH2007                       SH_SH2007
>
> Hi Iwamatsu-san,
>
> Thanks for your patch!
> In fact, I didn't know about mach-types.
> Can I take your patch in my v3 series?
>

Yes, please.

Nobuhiro


-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-06-10  4:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-08 10:08 [PATCH v2 0/4] Add support for new board: SH-2007 Hitoshi Mitake
2010-06-08 17:55 ` Nobuhiro Iwamatsu
2010-06-08 17:58 ` Nobuhiro Iwamatsu
2010-06-10  3:29 ` Hitoshi Mitake
2010-06-10  4:22 ` Nobuhiro Iwamatsu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).