Skip to content

Commit

Permalink
Merge pull request #13 from stffrdhrn/or1k-spec-1.3
Browse files Browse the repository at this point in the history
Page updates for spec verison 1.3
  • Loading branch information
stffrdhrn committed Jun 13, 2019
2 parents 499ada5 + 87e926b commit 84346a9
Show file tree
Hide file tree
Showing 12 changed files with 113 additions and 10 deletions.
62 changes: 62 additions & 0 deletions _posts/2019-06-04-openrisc-arch1.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
---
layout: post
title: "Announcing Architecture Version 1.3"
description: ""
category:
tags: []
author: Stafford Horne
---
{% include JB/setup %}

It has been been a few years since the release of [OpenRISC version 1.2](/revisions/r1.2).
But, it's been a busy few years of getting GDB and GCC ports upstream. Now with
the GCC port upstream we are able to make progress and this new architecture
revision does just that bringing in a handful of new instructions:

- New instruction `lf.stod.d` for converting floats from single precision to
double prevision
- New instruction `lf.dtos.d` for converting floats from double precision to
single precision
- New instruction `l.adrp` for constructing addresses
- New instructions `lf.sfun*` to support unordered compares
- New instruction `l.lf` to load floats with NaN boxing on 64-bit hardware
- Remove instructions `lf.rem.d` and `lf.rem.s` used for calculating floating point remainder

Perhaps one of the biggest new features is the addition of support for
performing double precision floating point operations using 32-bit hardware.
The is by way of the new [ORFPX64A32](/proposals/orfpx64a32)
instruction set extension.

With that said OpenRISC architecture specification
[version 1.3](https://raw.githubusercontent.com/openrisc/doc/master/openrisc-arch-1.3-rev1.pdf)
has been released. Quite a few of the instructions and changes are already
implemented in OpenRISC soft cores and toolchains so you should be able to use
them right away.

See the full details on the [release](/revisions/r1.3) page.

## Soft Core Support

Some soft cores already support the new instructions if you want to try them out
you can find them here:

- [mor1kx](https://github.com/openrisc/mor1kx) - has support for `lf.sfun*`
operations.
- [or1k_marocchino](https://github.com/openrisc/or1k_marocchino) - has support
for `lf.sfun*` operations as well as the `ORFPX64A32` extension.

## Software Upstreaming Effort

In order for the new features to be useful to most users they must be available
in OpenRISC software. Stafford is working on submitting toolchain patches for
the following components.

- [GCC](https://github.com/stffrdhrn/gcc/tree/or1k-fpu-2) - Patches, ready
to go but depends on binutils being in first.
- [binutils](https://github.com/stffrdhrn/binutils-gdb/tree/orfpx64a32-3) - Working
on adding test cases for the `l.adrp` instruction. Should send for upstream
review in a few weeks.
- [cgen](https://github.com/stffrdhrn/cgen)- Added unordered support to
support binutils, [patches submitted](https://sourceware.org/ml/cgen/2019-q2/msg00013.html) waiting for review.

Please feel free to contact us via the [mailing list](/community) if you have any questions.
2 changes: 1 addition & 1 deletion _proposals/corrections.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: proposal
title: ORBIS64/ORFPX64 Corrections (P13)
category: draft
category: r1.3
date: 2015-03-06 16:45
author: Rth
---
Expand Down
2 changes: 1 addition & 1 deletion _proposals/ladrp.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: proposal
title: ORBIS64/ORFPX64 Additions - l.adrp (P9)
category: draft
category: r1.3
date: 2015-03-06 16:41
author: Rth
---
Expand Down
2 changes: 1 addition & 1 deletion _proposals/lfmadd.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: proposal
title: ORFPX32/ORFPX64 - lf.madd (P6)
category: draft
category: r1.3
date: 2015-03-06 21:57
author: Rth
---
Expand Down
2 changes: 1 addition & 1 deletion _proposals/lfsf.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: proposal
title: ORFPX32/ORFPX64 - lf.sf* (P7)
category: draft
category: r1.3
date: 2015-03-06 23:25
author: Rth
---
Expand Down
2 changes: 1 addition & 1 deletion _proposals/lstod-ldtos.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: proposal
title: ORBIS64/ORFPX64 Additions - l.stod, l.dtos (P11)
category: draft
category: r1.3
date: 2015-03-06 16:43
author: Rth
---
Expand Down
2 changes: 1 addition & 1 deletion _proposals/orfpx64a32.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: proposal
title: ORFPX64A32 (P14)
category: draft
category: r1.3
date: 2015-03-12 15:35
author: BAndViG
---
Expand Down
2 changes: 1 addition & 1 deletion _revisions/r1.0.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: page
title: Revision 1.0
title: Version 1.0
date: 2012-12-14
category: released
tagline:
Expand Down
2 changes: 1 addition & 1 deletion _revisions/r1.1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: page
title: Revision 1.1
title: Version 1.1
date: 2014-05-12
category: released
tagline:
Expand Down
2 changes: 1 addition & 1 deletion _revisions/r1.2.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: page
title: Revision 1.2
title: Version 1.2
date: 2017-10-21
category: released
tagline:
Expand Down
41 changes: 41 additions & 0 deletions _revisions/r1.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
layout: page
title: Version 1.3
date: 2019-06-04
category: released
tagline:
---
{% include JB/setup %}
- **Download** [pdf](https://raw.githubusercontent.com/openrisc/doc/master/openrisc-arch-1.3-rev1.pdf)
- **Changes**
- ORFPX64A32 double-precision floating point operations on 32-bit hardware using register pairs (P14)
- Define `CPUCFGR[15]` for ORFPX64A32 presence flag
- New instructions `lf.stod.d` `lf.dtos.d` for converting between single and double precision floats (P7)
- New instruction `l.adrp` for constructing addresses (P9)
- New instructions `lf.sfun*` to support unordered compares (P11)
- New instruction `l.lf` to load floats with NaN boxing on 64-bit hardware
- Removed instructions `lf.rem.d` and `lf.rem.s` used to calculate floating point remainder
- Various cleanups and clarifications on internal rounding, truncation and others
- Clarification on internal rounding for `lf.madd.*` instructions (P6)
- Update `l.div*` to mention fraction is truncated
- Update `lf.ftoi.*` to mention fraction is truncated (P13)
- Add single-precision floating point NaN boxing on 64-bit hardware
- Updated machine instruction table (Section 18), removed unused page column, added class and opcode for quick reference
- Document `lf.sf*` floating point exceptions
- Document that floating point exceptions do write back results to registers
- Define addresses for `FPMADD*` and `VMAC*` sprs
- **Authors** Stafford Horne <shorne@gmail.com>, Andrey Bacherov <bandvig@mail.ru>

<!--more-->
## Details of Additions/Changes

{% for proposal in site.proposals %}
{% if proposal.category == "r1.3" %}

### [{{ proposal.title }}]({{proposal.url}})
*{{proposal.date | date: "%Y-%m-%d"}} - {{proposal.author}}*
{{proposal.excerpt}}
---
{% endif %}
{% endfor %}

2 changes: 1 addition & 1 deletion architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ The revision process is:
- After the proposal is added to the specification and the revision page
is create mark all proposal drafts as accepted.

## Revisions
## Published Versions

This is a list of historical revisions that have been reviewed, signed-off and
published.
Expand Down

0 comments on commit 84346a9

Please sign in to comment.