xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Connor Davis <connojdavis@gmail.com>, <xen-devel@lists.xenproject.org>
Cc: Bobby Eshleman <bobbyeshleman@gmail.com>,
	George Dunlap <george.dunlap@citrix.com>,
	Ian Jackson <iwj@xenproject.org>, Jan Beulich <jbeulich@suse.com>,
	Julien Grall <julien@xen.org>,
	Stefano Stabellini <sstabellini@kernel.org>, Wei Liu <wl@xen.org>,
	Tamas K Lengyel <tamas@tklengyel.com>,
	Alexandru Isaila <aisaila@bitdefender.com>,
	Petre Pircalabu <ppircalabu@bitdefender.com>
Subject: Re: [PATCH for-next 5/6] xen: Add files needed for minimal riscv build
Date: Thu, 25 Feb 2021 23:14:53 +0000	[thread overview]
Message-ID: <9b441529-c5a4-4299-1155-869bcdab06b0@citrix.com> (raw)
In-Reply-To: <7652ce3486c026a3a9f7d850170ea81ba8a18bdb.1614265718.git.connojdavis@gmail.com>

On 25/02/2021 15:24, Connor Davis wrote:
> Add the minimum code required to get xen to build with
> XEN_TARGET_ARCH=riscv64. It is minimal in the sense that every file and
> function added is required for a successful build, given the .config
> generated from riscv64_defconfig. The function implementations are just
> stubs; actual implmentations will need to be added later.
>
> Signed-off-by: Connor Davis <connojdavis@gmail.com>
> ---
>  config/riscv64.mk                        |   7 +
>  xen/Makefile                             |   8 +-
>  xen/arch/riscv/Kconfig                   |  54 ++++
>  xen/arch/riscv/Kconfig.debug             |   0
>  xen/arch/riscv/Makefile                  |  57 ++++
>  xen/arch/riscv/README.source             |  19 ++
>  xen/arch/riscv/Rules.mk                  |  13 +
>  xen/arch/riscv/arch.mk                   |   7 +
>  xen/arch/riscv/configs/riscv64_defconfig |  12 +
>  xen/arch/riscv/delay.c                   |  16 +
>  xen/arch/riscv/domain.c                  | 144 +++++++++
>  xen/arch/riscv/domctl.c                  |  36 +++
>  xen/arch/riscv/guestcopy.c               |  57 ++++
>  xen/arch/riscv/head.S                    |   6 +
>  xen/arch/riscv/irq.c                     |  78 +++++
>  xen/arch/riscv/lib/Makefile              |   1 +
>  xen/arch/riscv/lib/find_next_bit.c       | 284 +++++++++++++++++
>  xen/arch/riscv/mm.c                      |  93 ++++++
>  xen/arch/riscv/p2m.c                     | 150 +++++++++
>  xen/arch/riscv/percpu.c                  |  17 +
>  xen/arch/riscv/platforms/Kconfig         |  31 ++
>  xen/arch/riscv/riscv64/asm-offsets.c     |  31 ++
>  xen/arch/riscv/setup.c                   |  27 ++
>  xen/arch/riscv/shutdown.c                |  28 ++
>  xen/arch/riscv/smp.c                     |  35 +++
>  xen/arch/riscv/smpboot.c                 |  34 ++
>  xen/arch/riscv/sysctl.c                  |  33 ++
>  xen/arch/riscv/time.c                    |  35 +++
>  xen/arch/riscv/traps.c                   |  35 +++
>  xen/arch/riscv/vm_event.c                |  39 +++
>  xen/arch/riscv/xen.lds.S                 | 113 +++++++
>  xen/drivers/char/serial.c                |   1 +
>  xen/include/asm-riscv/altp2m.h           |  39 +++
>  xen/include/asm-riscv/asm.h              |  77 +++++
>  xen/include/asm-riscv/asm_defns.h        |  24 ++
>  xen/include/asm-riscv/atomic.h           | 204 ++++++++++++
>  xen/include/asm-riscv/bitops.h           | 331 ++++++++++++++++++++
>  xen/include/asm-riscv/bug.h              |  54 ++++
>  xen/include/asm-riscv/byteorder.h        |  16 +
>  xen/include/asm-riscv/cache.h            |  24 ++
>  xen/include/asm-riscv/cmpxchg.h          | 382 +++++++++++++++++++++++
>  xen/include/asm-riscv/compiler_types.h   |  32 ++
>  xen/include/asm-riscv/config.h           | 110 +++++++
>  xen/include/asm-riscv/cpufeature.h       |  17 +
>  xen/include/asm-riscv/csr.h              | 219 +++++++++++++
>  xen/include/asm-riscv/current.h          |  47 +++
>  xen/include/asm-riscv/debugger.h         |  15 +
>  xen/include/asm-riscv/delay.h            |  15 +
>  xen/include/asm-riscv/desc.h             |  12 +
>  xen/include/asm-riscv/device.h           |  15 +
>  xen/include/asm-riscv/div64.h            |  23 ++
>  xen/include/asm-riscv/domain.h           |  50 +++
>  xen/include/asm-riscv/event.h            |  42 +++
>  xen/include/asm-riscv/fence.h            |  12 +
>  xen/include/asm-riscv/flushtlb.h         |  34 ++
>  xen/include/asm-riscv/grant_table.h      |  12 +
>  xen/include/asm-riscv/guest_access.h     |  41 +++
>  xen/include/asm-riscv/guest_atomics.h    |  60 ++++
>  xen/include/asm-riscv/hardirq.h          |  27 ++
>  xen/include/asm-riscv/hypercall.h        |  12 +
>  xen/include/asm-riscv/init.h             |  42 +++
>  xen/include/asm-riscv/io.h               | 283 +++++++++++++++++
>  xen/include/asm-riscv/iocap.h            |  13 +
>  xen/include/asm-riscv/iommu.h            |  46 +++
>  xen/include/asm-riscv/irq.h              |  58 ++++
>  xen/include/asm-riscv/mem_access.h       |   4 +
>  xen/include/asm-riscv/mm.h               | 246 +++++++++++++++
>  xen/include/asm-riscv/monitor.h          |  65 ++++
>  xen/include/asm-riscv/nospec.h           |  25 ++
>  xen/include/asm-riscv/numa.h             |  41 +++
>  xen/include/asm-riscv/p2m.h              | 218 +++++++++++++
>  xen/include/asm-riscv/page-bits.h        |  11 +
>  xen/include/asm-riscv/page.h             |  73 +++++
>  xen/include/asm-riscv/paging.h           |  15 +
>  xen/include/asm-riscv/pci.h              |  31 ++
>  xen/include/asm-riscv/percpu.h           |  33 ++
>  xen/include/asm-riscv/processor.h        |  59 ++++
>  xen/include/asm-riscv/random.h           |   9 +
>  xen/include/asm-riscv/regs.h             |  23 ++
>  xen/include/asm-riscv/setup.h            |  14 +
>  xen/include/asm-riscv/smp.h              |  46 +++
>  xen/include/asm-riscv/softirq.h          |  16 +
>  xen/include/asm-riscv/spinlock.h         |  12 +
>  xen/include/asm-riscv/string.h           |  28 ++
>  xen/include/asm-riscv/sysregs.h          |  16 +
>  xen/include/asm-riscv/system.h           |  99 ++++++
>  xen/include/asm-riscv/time.h             |  31 ++
>  xen/include/asm-riscv/trace.h            |  12 +
>  xen/include/asm-riscv/types.h            |  60 ++++
>  xen/include/asm-riscv/vm_event.h         |  55 ++++
>  xen/include/asm-riscv/xenoprof.h         |  12 +
>  xen/include/public/arch-riscv.h          | 183 +++++++++++
>  xen/include/public/arch-riscv/hvm/save.h |  39 +++
>  xen/include/public/hvm/save.h            |   2 +
>  xen/include/public/pmu.h                 |   2 +
>  xen/include/public/xen.h                 |   2 +
>  xen/include/xen/domain.h                 |   1 +

Well - this is orders of magnitude more complicated than it ought to
be.  An empty head.S doesn't (well - shouldn't) need the overwhelming
majority of this.

Do you know how all of this is being pulled in?  Is it from attempting
to compile common/ by any chance?

Now is also an excellent opportunity to nuke the x86isms which have
escaped into common code (debugger and xenoprof in particular), and
rethink some of our common/arch split.

When it comes to header files specifically, I want to start using
xen/arch/$ARCH/include/asm/ and retrofit this to x86 and ARM.  It has
two important properties - first, that you don't need to symlink the
tree to make compilation work, and second that patches touching multiple
architectures have hunks ordered in a more logical way.

~Andrew


  reply	other threads:[~2021-02-25 23:15 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-25 15:23 [PATCH for-next 0/6] Minimal build for RISCV Connor Davis
2021-02-25 15:24 ` [PATCH for-next 1/6] xen/char: Default HAS_NS16550 to y only for X86 and ARM Connor Davis
2021-02-25 15:24 ` [PATCH for-next 2/6] xen/common: Guard iommu symbols with CONFIG_HAS_PASSTHROUGH Connor Davis
2021-02-25 15:45   ` Jan Beulich
2021-02-26  2:54     ` Connor Davis
2021-02-26  7:41       ` Jan Beulich
2021-02-25 15:24 ` [PATCH for-next 3/6] xen/sched: Fix build when NR_CPUS == 1 Connor Davis
2021-02-25 15:50   ` Jan Beulich
2021-02-26  3:08     ` Connor Davis
2021-02-26  8:31       ` Jan Beulich
2021-02-26 16:49         ` Dario Faggioli
2021-02-27  4:17         ` Connor Davis
2021-02-25 22:55   ` Bob Eshleman
2021-02-26  3:01     ` Connor Davis
2021-02-26 15:21       ` Bob Eshleman
2021-02-25 15:24 ` [PATCH for-next 4/6] xen: Fix build when !CONFIG_GRANT_TABLE Connor Davis
2021-02-25 15:53   ` Jan Beulich
2021-02-26  3:36     ` Connor Davis
2021-02-25 15:24 ` [PATCH for-next 5/6] xen: Add files needed for minimal riscv build Connor Davis
2021-02-25 23:14   ` Andrew Cooper [this message]
2021-02-26  1:06     ` Stefano Stabellini
2021-02-27  4:05       ` Connor Davis
2021-02-26  3:29     ` Connor Davis
2021-02-26 15:30     ` Bob Eshleman
2021-02-26 15:55       ` Andrew Cooper
2021-02-26 16:21         ` Bob Eshleman
2021-02-26 16:56           ` Andrew Cooper
2021-03-12 17:01   ` Jan Beulich
2021-03-12 17:09   ` Jan Beulich
2021-05-14  3:25     ` Connor Davis
2021-02-25 15:24 ` [PATCH for-next 6/6] automation: add container for riscv64 builds Connor Davis
2021-02-26  0:31   ` Stefano Stabellini
2021-02-26  6:15     ` Connor Davis
2021-02-26 15:54 ` [PATCH for-next 0/6] Minimal build for RISCV Bob Eshleman

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=9b441529-c5a4-4299-1155-869bcdab06b0@citrix.com \
    --to=andrew.cooper3@citrix.com \
    --cc=aisaila@bitdefender.com \
    --cc=bobbyeshleman@gmail.com \
    --cc=connojdavis@gmail.com \
    --cc=george.dunlap@citrix.com \
    --cc=iwj@xenproject.org \
    --cc=jbeulich@suse.com \
    --cc=julien@xen.org \
    --cc=ppircalabu@bitdefender.com \
    --cc=sstabellini@kernel.org \
    --cc=tamas@tklengyel.com \
    --cc=wl@xen.org \
    --cc=xen-devel@lists.xenproject.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 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).