mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Antony Pavlov <antonynpavlov@gmail.com>
To: vj <vicencb@gmail.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 0/7] [RFC][PATCH] archosg9: add support for tablet
Date: Wed, 26 Sep 2012 07:57:13 +0400	[thread overview]
Message-ID: <CAA4bVAFykRB09PNoGhNZ04q7RDTy8hftogxJZDtpuAoNP9HLhQ@mail.gmail.com> (raw)
In-Reply-To: <1348613994-1793-1-git-send-email-vicencb@gmail.com>

Hi!

You have did a good job!

But please check your patch series with the scripts/checkpatch.pl
script before submiting it to the maillist.

On 26 September 2012 02:59, vj <vicencb@gmail.com> wrote:
> Hello,
> A this is my first contribution, so I'm basically requesting for comments.
>
> The attached patch adds support for Archos G9 tablet wich uses an OMAP4460 cpu.
> The tablet by default only boots from internal flash, so to test barebox on it a hardware tweak is required: change the sys_boot configuration.
> Once done the tablet can be booted with the following command:
> A sudo scripts/usbboot <first_stage> <rootfs>
>
> The patch contains
> A 1.- specific changes for OMAP4460
> A 2.- support for usb-booting
> A 3.- support for console on usb
> A 4.- support for file transfer through usb
> A 5.- some minor bug fixes
> A 6.- adds support for archosg9 board
>
> A question I have is what does omap_vector_init do?
> It breaks usb-booting.
> An improvement to be done would be to split the file "scripts/usbboot.c" into a header and two c files, but the Makefile framework seemed to me to do not allow that.
>
> In any case the patch should be tested with other boards to check it does not breaks something.
>
> vj (7):
>   Improved an error message and solved a minor bug
>   added debug info for twl6030
>   OMAP specific changes
>   Add USB booting capabilities to OMAP
>   add console support over the same USB used for booting
>   add filesystem support over the same USB used for booting
>   Add support for Archos G9 tablet
>
>  arch/arm/Makefile                               |   1 +
>  arch/arm/boards/archosg9/Makefile               |   1 +
>  arch/arm/boards/archosg9/board.c                |  58 ++
>  arch/arm/boards/archosg9/env/bin/init           |  18 +
>  arch/arm/boards/archosg9/env/config             |   2 +
>  arch/arm/boards/archosg9/lowlevel.c             | 126 ++++
>  arch/arm/boards/archosg9/mux.c                  | 226 +++++++
>  arch/arm/configs/archosg9_defconfig             |  70 +++
>  arch/arm/configs/archosg9_xload_defconfig       |  25 +
>  arch/arm/cpu/cpu.c                              |   1 +
>  arch/arm/lib/armlinux.c                         |   2 +-
>  arch/arm/lib/barebox.lds.S                      |  10 +
>  arch/arm/mach-omap/Kconfig                      |  30 +
>  arch/arm/mach-omap/Makefile                     |   1 +
>  arch/arm/mach-omap/include/mach/omap4-mux.h     |  80 ++-
>  arch/arm/mach-omap/include/mach/omap4-silicon.h |  13 +
>  arch/arm/mach-omap/include/mach/omap4_rom_usb.h | 146 +++++
>  arch/arm/mach-omap/include/mach/xload.h         |   1 +
>  arch/arm/mach-omap/omap4_generic.c              |   6 +
>  arch/arm/mach-omap/omap4_rom_usb.c              | 189 ++++++
>  arch/arm/mach-omap/xload.c                      |  26 +
>  arch/arm/tools/mach-types                       |   1 +
>  drivers/mci/omap_hsmmc.c                        |   2 +-
>  drivers/mfd/twl6030.c                           |  13 +
>  drivers/serial/Kconfig                          |   7 +
>  drivers/serial/Makefile                         |   1 +
>  drivers/serial/serial_usb.c                     |  64 ++
>  fs/Kconfig                                      |   5 +
>  fs/Makefile                                     |   1 +
>  fs/usbbootfs.c                                  | 195 ++++++
>  include/mfd/twl6030.h                           |   8 +
>  scripts/.gitignore                              |   1 +
>  scripts/Makefile                                |   3 +
>  scripts/usbboot.c                               | 797 ++++++++++++++++++++++++
>  34 files changed, 2100 insertions(+), 30 deletions(-)
>  create mode 100644 arch/arm/boards/archosg9/Makefile
>  create mode 100644 arch/arm/boards/archosg9/board.c
>  create mode 100644 arch/arm/boards/archosg9/env/bin/init
>  create mode 100644 arch/arm/boards/archosg9/env/config
>  create mode 100644 arch/arm/boards/archosg9/lowlevel.c
>  create mode 100644 arch/arm/boards/archosg9/mux.c
>  create mode 100644 arch/arm/configs/archosg9_defconfig
>  create mode 100644 arch/arm/configs/archosg9_xload_defconfig
>  create mode 100644 arch/arm/mach-omap/include/mach/omap4_rom_usb.h
>  create mode 100644 arch/arm/mach-omap/omap4_rom_usb.c
>  create mode 100644 drivers/serial/serial_usb.c
>  create mode 100644 fs/usbbootfs.c
>  create mode 100644 scripts/usbboot.c
>
> --
> 1.7.12.1
>
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox



-- 
Best regards,
  Antony Pavlov

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

  parent reply	other threads:[~2012-09-26  3:57 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <[RFC][PATCH] archosg9: add support for tablet>
2012-09-25 22:59 ` vj
2012-09-25 22:59   ` [PATCH 1/7] Improved an error message and solved a minor bug vj
2012-09-26  7:11     ` Sascha Hauer
2012-09-25 22:59   ` [PATCH 2/7] added debug info for twl6030 vj
2012-09-25 22:59   ` [PATCH 3/7] OMAP specific changes vj
2012-09-26  7:18     ` Sascha Hauer
2012-09-25 22:59   ` [PATCH 4/7] Add USB booting capabilities to OMAP vj
2012-09-26  7:45     ` Sascha Hauer
2012-09-28  0:27       ` vj
2012-09-28  7:32         ` Sascha Hauer
2012-09-25 22:59   ` [PATCH 5/7] add console support over the same USB used for booting vj
2012-09-25 22:59   ` [PATCH 6/7] add filesystem " vj
2012-09-25 22:59   ` [PATCH 7/7] Add support for Archos G9 tablet vj
2012-09-26  3:57   ` Antony Pavlov [this message]
2012-09-26  7:06   ` [PATCH 0/7] [RFC][PATCH] archosg9: add support for tablet Sascha Hauer
2012-09-26 22:38     ` vj
2012-09-26  8:16   ` Sascha Hauer

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=CAA4bVAFykRB09PNoGhNZ04q7RDTy8hftogxJZDtpuAoNP9HLhQ@mail.gmail.com \
    --to=antonynpavlov@gmail.com \
    --cc=barebox@lists.infradead.org \
    --cc=vicencb@gmail.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox