From: christian.glindkamp@taskit.de (Christian Glindkamp)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2] mach-at91: Support for gms board added
Date: Wed, 8 Dec 2010 15:50:37 +0100 [thread overview]
Message-ID: <20101208145037.GA16435@taskit.de> (raw)
In-Reply-To: <4CFF47A0.8010208@atmel.com>
On 2010-12-08 09:53, Nicolas Ferre wrote:
> Hi Igor,
>
> Le 07/12/2010 20:53, Ryan Mallon :
> > On 12/08/2010 03:42 AM, Igor Plyatov wrote:
> >> * The gms is a board from GeoSIG Ltd company.
> >> It is based on the Stamp9G20 module from Taskit company.
> >> * This is a second version of the patch with adjustments according
> >> to comments from Ryan Mallon.
> >> * This patch made for Linux 2.6.37-rc5.
>
> First thank you for submitting this board support.
>
> >> Signed-off-by: Igor Plyatov <plyatov@gmail.com>
> >> ---
>
> [..]
>
> > Couple more comments below.
> > Looking at this a bit more closely, the Stamp9G20 is a system on module
> > (SoM) board. The MACH_STAMP9G20 option supports the Stamp9G20 on
> > taskits's evaluation board and the MACH_PCONTROL_G20 option supports it
> > on the PControl carrier board. There is a reasonable amount of code
> > replication in each of the board files for the UARTs, NAND, MMC, etc.
> >
> > Would it be better to have MACH_STAMPG20/board-stamp-9g20.c contain the
> > core support for the Stamp9G20 module and then each of the carrier board
> > files contain only the setup/devices found on the carrier board?
>
> I have exactly the same feeling as Ryan. We should make sure
> to factorize as much code as possible for maintenance reasons.
>
> If you need to distinguish between board features, you can
> pass information in system_rev as implemented in this
> board merging commit:
> http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a6e016f19d393fbe4e040bee8155b03b840fa689
>
I don't think system_rev is such a good idea for carrier boards from
different vendors. Somebody would have to control the assigned numbers.
This is what I would do:
1. Refactor board-stamp9g20.c have three board init functions:
- portuxg20_board_init for PortuxG20 SBC (MACH_PORTUXG20)
- stamp9g20_board_init only containing the functions used on the
Stamp9G20 alone
- stamp9g20evb_board_init calling stamp9g20_board_init and adding
functionality of the evaluation board (MACH_STAMP9G20)
2. Modify board-pcontrol-g20.c to use stamp9g20_board_init
This would still duplicate the UART config (there is not much to share,
only the DBGU would be configured on all boards), but share NAND, MMC,
1-wire. Everything else can't be shared as it is carrier board specific.
The gms board would then have to have its own machine number and call
stamp9g20_board_init.
Kind regards,
Christian Glindkamp
WARNING: multiple messages have this Message-ID (diff)
From: Christian Glindkamp <christian.glindkamp@taskit.de>
To: Nicolas Ferre <nicolas.ferre@atmel.com>
Cc: Igor Plyatov <plyatov@gmail.com>,
linux@arm.linux.org.uk, costa.antonior@gmail.com,
linux-kernel@vger.kernel.org, Ryan Mallon <ryan@bluewatersys.com>,
plagnioj@jcrosoft.com, linux@maxim.org.za,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2] mach-at91: Support for gms board added
Date: Wed, 8 Dec 2010 15:50:37 +0100 [thread overview]
Message-ID: <20101208145037.GA16435@taskit.de> (raw)
In-Reply-To: <4CFF47A0.8010208@atmel.com>
On 2010-12-08 09:53, Nicolas Ferre wrote:
> Hi Igor,
>
> Le 07/12/2010 20:53, Ryan Mallon :
> > On 12/08/2010 03:42 AM, Igor Plyatov wrote:
> >> * The gms is a board from GeoSIG Ltd company.
> >> It is based on the Stamp9G20 module from Taskit company.
> >> * This is a second version of the patch with adjustments according
> >> to comments from Ryan Mallon.
> >> * This patch made for Linux 2.6.37-rc5.
>
> First thank you for submitting this board support.
>
> >> Signed-off-by: Igor Plyatov <plyatov@gmail.com>
> >> ---
>
> [..]
>
> > Couple more comments below.
> > Looking at this a bit more closely, the Stamp9G20 is a system on module
> > (SoM) board. The MACH_STAMP9G20 option supports the Stamp9G20 on
> > taskits's evaluation board and the MACH_PCONTROL_G20 option supports it
> > on the PControl carrier board. There is a reasonable amount of code
> > replication in each of the board files for the UARTs, NAND, MMC, etc.
> >
> > Would it be better to have MACH_STAMPG20/board-stamp-9g20.c contain the
> > core support for the Stamp9G20 module and then each of the carrier board
> > files contain only the setup/devices found on the carrier board?
>
> I have exactly the same feeling as Ryan. We should make sure
> to factorize as much code as possible for maintenance reasons.
>
> If you need to distinguish between board features, you can
> pass information in system_rev as implemented in this
> board merging commit:
> http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a6e016f19d393fbe4e040bee8155b03b840fa689
>
I don't think system_rev is such a good idea for carrier boards from
different vendors. Somebody would have to control the assigned numbers.
This is what I would do:
1. Refactor board-stamp9g20.c have three board init functions:
- portuxg20_board_init for PortuxG20 SBC (MACH_PORTUXG20)
- stamp9g20_board_init only containing the functions used on the
Stamp9G20 alone
- stamp9g20evb_board_init calling stamp9g20_board_init and adding
functionality of the evaluation board (MACH_STAMP9G20)
2. Modify board-pcontrol-g20.c to use stamp9g20_board_init
This would still duplicate the UART config (there is not much to share,
only the DBGU would be configured on all boards), but share NAND, MMC,
1-wire. Everything else can't be shared as it is carrier board specific.
The gms board would then have to have its own machine number and call
stamp9g20_board_init.
Kind regards,
Christian Glindkamp
next prev parent reply other threads:[~2010-12-08 14:50 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-12-07 14:42 [PATCH v2] mach-at91: Support for gms board added Igor Plyatov
2010-12-07 14:42 ` Igor Plyatov
2010-12-07 19:53 ` Ryan Mallon
2010-12-07 19:53 ` Ryan Mallon
2010-12-08 8:53 ` Nicolas Ferre
2010-12-08 8:53 ` Nicolas Ferre
2010-12-08 14:03 ` Jean-Christophe PLAGNIOL-VILLARD
2010-12-08 14:03 ` Jean-Christophe PLAGNIOL-VILLARD
2010-12-08 19:29 ` Igor Plyatov
2010-12-08 19:29 ` Igor Plyatov
2010-12-08 14:50 ` Christian Glindkamp [this message]
2010-12-08 14:50 ` Christian Glindkamp
2010-12-08 20:08 ` Ryan Mallon
2010-12-08 20:08 ` Ryan Mallon
2010-12-09 10:15 ` [PATCH] at91: Refactor Stamp9G20 and PControl G20 board file Christian Glindkamp
2010-12-09 10:15 ` Christian Glindkamp
2010-12-10 3:38 ` Jean-Christophe PLAGNIOL-VILLARD
2010-12-10 3:38 ` Jean-Christophe PLAGNIOL-VILLARD
2010-12-10 9:03 ` Christian Glindkamp
2010-12-10 9:03 ` Christian Glindkamp
2010-12-10 6:19 ` Igor Plyatov
2010-12-10 6:19 ` Igor Plyatov
[not found] ` <1291909193.6251.32.camel@homepc>
2010-12-10 8:44 ` Christian Glindkamp
2010-12-10 8:44 ` Christian Glindkamp
2010-12-10 9:45 ` Nicolas Ferre
2010-12-10 9:45 ` Nicolas Ferre
2010-12-08 19:26 ` [PATCH v2] mach-at91: Support for gms board added Igor Plyatov
2010-12-08 19:26 ` Igor Plyatov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20101208145037.GA16435@taskit.de \
--to=christian.glindkamp@taskit.de \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.