mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Antony Pavlov <antonynpavlov@gmail.com>
To: Oleksij Rempel <linux@rempel-privat.de>
Cc: barebox@lists.infradead.org
Subject: Re: [RFC v4 08/10] RISC-V: add erizo_generic_defconfig
Date: Sat, 30 Sep 2017 15:38:59 +0300	[thread overview]
Message-ID: <20170930153859.7d7d44ddae692b3d46a90c1a@gmail.com> (raw)
In-Reply-To: <a483bc68-8d0a-7d27-377e-e1941ddc4161@rempel-privat.de>

On Fri, 29 Sep 2017 14:29:21 +0200
Oleksij Rempel <linux@rempel-privat.de> wrote:

> Am 29.09.2017 um 01:12 schrieb Antony Pavlov:
> > Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
> > ---
> >  arch/riscv/configs/erizo_generic_defconfig | 55 ++++++++++++++++++++++++++++++
> >  1 file changed, 55 insertions(+)
> > 
> > diff --git a/arch/riscv/configs/erizo_generic_defconfig b/arch/riscv/configs/erizo_generic_defconfig
> > new file mode 100644
> > index 000000000..8ccad8934
> > --- /dev/null
> > +++ b/arch/riscv/configs/erizo_generic_defconfig
> > @@ -0,0 +1,55 @@
> > +CONFIG_32BIT=y
> > +CONFIG_BUILTIN_DTB=y
> > +CONFIG_BUILTIN_DTB_NAME="erizo_generic"
> > +# CONFIG_GLOBALVAR is not set
> > +CONFIG_TEXT_BASE=0x80000000
> > +CONFIG_MEMORY_LAYOUT_FIXED=y
> > +CONFIG_STACK_BASE=0x800e0000
> > +CONFIG_STACK_SIZE=0x20000
> > +CONFIG_MALLOC_BASE=0x80100000
> > +CONFIG_MALLOC_SIZE=0x100000
> > +CONFIG_MALLOC_TLSF=y
> > +CONFIG_PANIC_HANG=y
> > +CONFIG_HUSH_FANCY_PROMPT=y
> > +CONFIG_CMDLINE_EDITING=y
> > +CONFIG_AUTO_COMPLETE=y
> > +# CONFIG_ERRNO_MESSAGES is not set
> > +# CONFIG_TIMESTAMP is not set
> > +# CONFIG_BOOTM is not set
> > +# CONFIG_ENV_HANDLING is not set
> > +CONFIG_POLLER=y
> > +CONFIG_DEBUG_LL=y
> > +CONFIG_LONGHELP=y
> > +CONFIG_CMD_IOMEM=y
> > +CONFIG_CMD_IMD=y
> > +CONFIG_CMD_MEMINFO=y
> > +CONFIG_CMD_GO=y
> > +CONFIG_CMD_LOADY=y
> > +CONFIG_CMD_CMP=y
> > +CONFIG_CMD_MD5SUM=y
> > +CONFIG_CMD_SHA1SUM=y
> > +CONFIG_CMD_MSLEEP=y
> > +CONFIG_CMD_SLEEP=y
> > +CONFIG_CMD_MEMTEST=y
> > +CONFIG_CMD_MM=y
> > +CONFIG_CMD_FLASH=y
> > +CONFIG_CMD_GPIO=y
> > +CONFIG_CMD_I2C=y
> > +CONFIG_CMD_SPI=y
> > +CONFIG_CMD_OF_DUMP=y
> > +CONFIG_CMD_TIME=y
> > +CONFIG_CMD_DHRYSTONE=y
> > +CONFIG_OFDEVICE=y
> > +CONFIG_DRIVER_SERIAL_NS16550=y
> > +CONFIG_DRIVER_SPI_GPIO=y
> > +CONFIG_I2C=y
> > +CONFIG_I2C_GPIO=y
> > +CONFIG_MTD=y
> > +# CONFIG_MTD_OOB_DEVICE is not set
> > +CONFIG_MTD_M25P80=y
> > +CONFIG_CLOCKSOURCE_DUMMY_RATE=60000
> > +CONFIG_EEPROM_AT25=y
> > +CONFIG_EEPROM_AT24=y
> 
> hm... none of it seems to be in devicetree. Do you need this eeproms?

My bad! These options used in development branch.

In my RICS-V TODO list I have the 'add support for Opencores I2C and SPI IP-blocks' record.

At the moment I work on testing bitbanged SPI and I2C on real FPGA boards.
Next I will try to use Opencores I2C and SPI IP-blocks instead of GPIO bitbang.

> 
> > +CONFIG_GPIO_GENERIC_PLATFORM=y
> > +# CONFIG_PINCTRL is not set
> > +CONFIG_DIGEST_CRC32_GENERIC=y
> > 

-- 
Best regards,
  Antony Pavlov

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

  reply	other threads:[~2017-09-30 12:27 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-28 23:12 [RFC v4 00/10] add initial RISC-V architecture support Antony Pavlov
2017-09-28 23:12 ` [RFC v4 01/10] Add " Antony Pavlov
2017-09-29 12:07   ` Oleksij Rempel
2017-09-30 11:57     ` Antony Pavlov
2017-10-02  7:43       ` Oleksij Rempel
2017-10-02 14:08         ` Antony Pavlov
2017-10-02 10:04       ` Daniel Schultz
2017-10-02 22:15         ` Antony Pavlov
2017-10-02 10:08     ` Daniel Schultz
2017-10-02 22:21       ` Antony Pavlov
2017-10-05 10:55         ` Daniel Schultz
2017-10-06 15:39           ` Antony Pavlov
2017-09-28 23:12 ` [RFC v4 02/10] RISC-V: add Erizo SoC support Antony Pavlov
2017-09-29 12:18   ` Oleksij Rempel
2017-09-30 12:05     ` Antony Pavlov
2017-09-28 23:12 ` [RFC v4 03/10] RISC-V: add low-level debug macros for ns16550 Antony Pavlov
2017-09-28 23:12 ` [RFC v4 04/10] RISC-V: add nmon nano-monitor Antony Pavlov
2017-09-29 12:26   ` Oleksij Rempel
2017-09-30 12:22     ` Antony Pavlov
2017-09-28 23:12 ` [RFC v4 05/10] RISC-V: erizo: add DEBUG_LL support Antony Pavlov
2017-09-28 23:12 ` [RFC v4 06/10] RISC-V: erizo: enable NMON Antony Pavlov
2017-09-28 23:12 ` [RFC v4 07/10] RISC-V: erizo: add nmon image creation Antony Pavlov
2017-09-28 23:12 ` [RFC v4 08/10] RISC-V: add erizo_generic_defconfig Antony Pavlov
2017-09-29 12:29   ` Oleksij Rempel
2017-09-30 12:38     ` Antony Pavlov [this message]
2017-09-28 23:12 ` [RFC v4 09/10] scripts: add nmon-loader Antony Pavlov
2017-09-28 23:12 ` [RFC v4 10/10] Documentation: add RISC-V docs Antony Pavlov
2017-09-29 12:35   ` Oleksij Rempel
2017-09-30 12:34     ` Antony Pavlov

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=20170930153859.7d7d44ddae692b3d46a90c1a@gmail.com \
    --to=antonynpavlov@gmail.com \
    --cc=barebox@lists.infradead.org \
    --cc=linux@rempel-privat.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