[Qemu-devel] [PATCH v7 0/2] Nios II generic board config and semihosting

Sandra Loosemore posted 2 patches 5 years ago
Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Test checkpatch passed
Test asan passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/1554321185-2825-1-git-send-email-sandra@codesourcery.com
Maintainers: Chris Wulff <crwulff@gmail.com>, Marek Vasut <marex@denx.de>
default-configs/nios2-softmmu.mak |   1 +
hw/nios2/Kconfig                  |   4 +
hw/nios2/Makefile.objs            |   1 +
hw/nios2/boot.c                   |  18 +-
hw/nios2/generic_nommu.c          | 105 +++++++++
qemu-options.hx                   |   8 +-
target/nios2/Makefile.objs        |   2 +-
target/nios2/cpu.h                |   4 +-
target/nios2/helper.c             |  13 ++
target/nios2/nios2-semi.c         | 455 ++++++++++++++++++++++++++++++++++++++
10 files changed, 599 insertions(+), 12 deletions(-)
create mode 100644 hw/nios2/generic_nommu.c
create mode 100644 target/nios2/nios2-semi.c
[Qemu-devel] [PATCH v7 0/2] Nios II generic board config and semihosting
Posted by Sandra Loosemore 5 years ago
This is the seventh version of the patch series last posted here:
http://lists.nongnu.org/archive/html/qemu-devel/2019-03/msg06255.html

Changes since v6:
- Fixed block comment formatting for QEMU style.
- Fixed fixme for interrupt handler (now added to libgloss BSP).
- Added link to libgloss semihosting documentation.

Sandra Loosemore (2):
  Add generic Nios II board.
  Add Nios II semihosting support.

 default-configs/nios2-softmmu.mak |   1 +
 hw/nios2/Kconfig                  |   4 +
 hw/nios2/Makefile.objs            |   1 +
 hw/nios2/boot.c                   |  18 +-
 hw/nios2/generic_nommu.c          | 105 +++++++++
 qemu-options.hx                   |   8 +-
 target/nios2/Makefile.objs        |   2 +-
 target/nios2/cpu.h                |   4 +-
 target/nios2/helper.c             |  13 ++
 target/nios2/nios2-semi.c         | 455 ++++++++++++++++++++++++++++++++++++++
 10 files changed, 599 insertions(+), 12 deletions(-)
 create mode 100644 hw/nios2/generic_nommu.c
 create mode 100644 target/nios2/nios2-semi.c

-- 
2.8.1


Re: [Qemu-devel] [PATCH v7 0/2] Nios II generic board config and semihosting
Posted by Peter Maydell 4 years, 11 months ago
On Wed, 3 Apr 2019 at 20:53, Sandra Loosemore <sandra@codesourcery.com> wrote:
>
> This is the seventh version of the patch series last posted here:
> http://lists.nongnu.org/archive/html/qemu-devel/2019-03/msg06255.html
>
> Changes since v6:
> - Fixed block comment formatting for QEMU style.
> - Fixed fixme for interrupt handler (now added to libgloss BSP).
> - Added link to libgloss semihosting documentation.
>
> Sandra Loosemore (2):
>   Add generic Nios II board.
>   Add Nios II semihosting support.

Since Nios II doesn't have anybody actively handling
pull requests for it right now, I've applied these patches
directly to master -- thanks!

-- PMM

Re: [Qemu-devel] [PATCH v7 0/2] Nios II generic board config and semihosting
Posted by Sandra Loosemore 4 years, 11 months ago
On 4/29/19 9:55 AM, Peter Maydell wrote:
> On Wed, 3 Apr 2019 at 20:53, Sandra Loosemore <sandra@codesourcery.com> wrote:
>>
>> This is the seventh version of the patch series last posted here:
>> http://lists.nongnu.org/archive/html/qemu-devel/2019-03/msg06255.html
>>
>> Changes since v6:
>> - Fixed block comment formatting for QEMU style.
>> - Fixed fixme for interrupt handler (now added to libgloss BSP).
>> - Added link to libgloss semihosting documentation.
>>
>> Sandra Loosemore (2):
>>    Add generic Nios II board.
>>    Add Nios II semihosting support.
> 
> Since Nios II doesn't have anybody actively handling
> pull requests for it right now, I've applied these patches
> directly to master -- thanks!

Thank you for taking care of this!

-Sandra