public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Jorge Ramirez <jorge.ramirez.ortiz@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v1 03/05] db820c: add qualcomm dragonboard 820C support
Date: Fri, 12 Jan 2018 12:19:00 +0100	[thread overview]
Message-ID: <9d9cc759-8a01-5e6d-7564-455065cf238a@gmail.com> (raw)
In-Reply-To: <1515580432-25985-3-git-send-email-jorge.ramirez.ortiz@gmail.com>

On 01/10/2018 11:33 AM, Jorge Ramirez-Ortiz wrote:
> From: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
>
> This commit adds support for 96Boards Dragonboard820C.
>
> The board is based on APQ8086 Qualcomm Soc, complying with the
> 96Boards specification.
>
> Features
>   - 4x Kyro CPU (64 bit) up to 2.15GHz
>   - USB2.0
>   - USB3.0
>   - ISP
>   - Qualcomm Hexagon DSP
>   - SD 3.0 (UHS-I)
>   - UFS 2.0
>   - Qualcomm Adreno 530 GPU
>   - GPS
>   - BT 4.2
>   - Wi-Fi 2.4GHz, 5GHz (802.11ac)
>   - PCIe 2.0
>   - MIPI-CSI, MIPI-DSI
>   - I2S
>
> U-Boot boots chained from LK (LK implements the fastboot protocol) in
> 64-bit mode.
>
> For detailed build instructions see readme.txt in the board directory.
>
> Signed-off-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
> ---
>   arch/arm/dts/Makefile                              |   3 +-
>   arch/arm/dts/dragonboard820c.dts                   |  65 +++
>   arch/arm/mach-snapdragon/Kconfig                   |  10 +
>   arch/arm/mach-snapdragon/Makefile                  |   2 +
>   arch/arm/mach-snapdragon/clock-apq8096.c           |  62 +++
>   .../mach-snapdragon/include/mach/sysmap-apq8096.h  |  29 ++
>   arch/arm/mach-snapdragon/sysmap-apq8096.c          |  32 ++
>   board/qualcomm/dragonboard820c/Kconfig             |  15 +
>   board/qualcomm/dragonboard820c/MAINTAINERS         |   6 +
>   board/qualcomm/dragonboard820c/Makefile            |   8 +
>   board/qualcomm/dragonboard820c/dragonboard820c.c   | 128 ++++++
>   board/qualcomm/dragonboard820c/head.S              |  34 ++
>   board/qualcomm/dragonboard820c/readme.txt          | 463 +++++++++++++++++++++
>   board/qualcomm/dragonboard820c/u-boot.lds          | 106 +++++
>   configs/dragonboard820c_defconfig                  |  37 ++
>   include/configs/dragonboard820c.h                  |  72 ++++
>   16 files changed, 1071 insertions(+), 1 deletion(-)
>   create mode 100644 arch/arm/dts/dragonboard820c.dts
>   create mode 100644 arch/arm/mach-snapdragon/clock-apq8096.c
>   create mode 100644 arch/arm/mach-snapdragon/include/mach/sysmap-apq8096.h
>   create mode 100644 arch/arm/mach-snapdragon/sysmap-apq8096.c
>   create mode 100644 board/qualcomm/dragonboard820c/Kconfig
>   create mode 100644 board/qualcomm/dragonboard820c/MAINTAINERS
>   create mode 100644 board/qualcomm/dragonboard820c/Makefile
>   create mode 100644 board/qualcomm/dragonboard820c/dragonboard820c.c
>   create mode 100644 board/qualcomm/dragonboard820c/head.S
>   create mode 100644 board/qualcomm/dragonboard820c/readme.txt
>   create mode 100644 board/qualcomm/dragonboard820c/u-boot.lds
>   create mode 100644 configs/dragonboard820c_defconfig
>   create mode 100644 include/configs/dragonboard820c.h


any feedback please?

  reply	other threads:[~2018-01-12 11:19 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-10 10:33 [U-Boot] [PATCH v1 01/05] env: enable accessing the environment in an EXT4 partition Jorge Ramirez-Ortiz
2018-01-10 10:33 ` [U-Boot] [PATCH v1 02/05] arm: mach-snapdragon: refactor clock driver Jorge Ramirez-Ortiz
2018-01-15 21:43   ` [U-Boot] [U-Boot, v1, " Tom Rini
2018-01-10 10:33 ` [U-Boot] [PATCH v1 03/05] db820c: add qualcomm dragonboard 820C support Jorge Ramirez-Ortiz
2018-01-12 11:19   ` Jorge Ramirez [this message]
2018-01-15  9:27   ` Jorge Ramirez
2018-01-15 21:43   ` [U-Boot] [U-Boot, v1, " Tom Rini
2018-01-10 10:33 ` [U-Boot] [PATCH v1 04/05] db820c: enable pmic gpios for pm8994 Jorge Ramirez-Ortiz
2018-01-15 21:43   ` [U-Boot] [U-Boot, v1, " Tom Rini
2018-01-10 10:33 ` [U-Boot] [PATCH v1 05/05] db820c: stop autoboot when vol- pressed Jorge Ramirez-Ortiz
2018-01-15 21:43   ` [U-Boot] [U-Boot, v1, " Tom Rini
2018-01-15 21:43 ` [U-Boot] [U-Boot, v1, 01/05] env: enable accessing the environment in an EXT4 partition Tom Rini

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=9d9cc759-8a01-5e6d-7564-455065cf238a@gmail.com \
    --to=jorge.ramirez.ortiz@gmail.com \
    --cc=u-boot@lists.denx.de \
    /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