Bump cortex-a to v2.0.1

pull/9/head
Andre Richter 6 years ago
parent 1ca70bcd56
commit 08235093c1
No known key found for this signature in database
GPG Key ID: 2116C1AB102F615E

@ -1,6 +1,6 @@
[[package]]
name = "cortex-a"
version = "1.1.0"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -10,7 +10,7 @@ dependencies = [
name = "kernel8"
version = "0.1.0"
dependencies = [
"cortex-a 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"cortex-a 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"raspi3_boot 0.1.0",
"register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -29,7 +29,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
name = "raspi3_boot"
version = "0.1.0"
dependencies = [
"cortex-a 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"cortex-a 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -48,7 +48,7 @@ version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[metadata]
"checksum cortex-a 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "883a29b1bd91667bb31da74ab66f9642f0f53cec6afae505e7efb664763afd00"
"checksum cortex-a 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bbb5d3c4a2e15b96e076a50c5e7e292585c902bb830f31d6dab0927f8a4d655f"
"checksum panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc796c620f27056d4ffe7c558533fd67ae5af0fd8e919fbe38de803368af73e"
"checksum r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a38df5b15c8d5c7e8654189744d8e396bddc18ad48041a500ce52d6948941f"
"checksum register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "157a11ac0b1882ff4a527a92f911dd288df17367faaaa0c36f188cd61ec36fc1"

@ -5,7 +5,7 @@ authors = ["Andre Richter <andre.o.richter@gmail.com>"]
[dependencies]
raspi3_boot = { path = "raspi3_boot" }
cortex-a = "1.1.0"
cortex-a = "2.0.1"
register = "0.2.0"
[package.metadata.cargo-xbuild]

Binary file not shown.

@ -4,6 +4,6 @@ version = "0.1.0"
authors = ["Andre Richter <andre.o.richter@gmail.com>"]
[dependencies]
cortex-a = "1.1.0"
cortex-a = "2.0.1"
panic-abort = "0.2.0"
r0 = "0.2.2"

@ -73,7 +73,7 @@ unsafe fn reset() -> ! {
#[link_section = ".text.boot"]
#[no_mangle]
pub unsafe extern "C" fn _boot_cores() -> ! {
use cortex_a::{asm, regs::mpidr_el1::*, regs::sp::*};
use cortex_a::{asm, regs::*};
const CORE_MASK: u64 = 0x3;
const STACK_START: u64 = 0x80_000;

@ -1,6 +1,6 @@
[[package]]
name = "cortex-a"
version = "1.1.0"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -10,7 +10,7 @@ dependencies = [
name = "kernel8"
version = "0.1.0"
dependencies = [
"cortex-a 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"cortex-a 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"raspi3_boot 0.1.0",
"register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -29,7 +29,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
name = "raspi3_boot"
version = "0.1.0"
dependencies = [
"cortex-a 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"cortex-a 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -48,7 +48,7 @@ version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[metadata]
"checksum cortex-a 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "883a29b1bd91667bb31da74ab66f9642f0f53cec6afae505e7efb664763afd00"
"checksum cortex-a 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bbb5d3c4a2e15b96e076a50c5e7e292585c902bb830f31d6dab0927f8a4d655f"
"checksum panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc796c620f27056d4ffe7c558533fd67ae5af0fd8e919fbe38de803368af73e"
"checksum r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a38df5b15c8d5c7e8654189744d8e396bddc18ad48041a500ce52d6948941f"
"checksum register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "157a11ac0b1882ff4a527a92f911dd288df17367faaaa0c36f188cd61ec36fc1"

@ -5,7 +5,7 @@ authors = ["Andre Richter <andre.o.richter@gmail.com>"]
[dependencies]
raspi3_boot = { path = "raspi3_boot" }
cortex-a = "1.1.0"
cortex-a = "2.0.1"
register = "0.2.0"
[package.metadata.cargo-xbuild]

Binary file not shown.

@ -4,6 +4,6 @@ version = "0.1.0"
authors = ["Andre Richter <andre.o.richter@gmail.com>"]
[dependencies]
cortex-a = "1.1.0"
cortex-a = "2.0.1"
panic-abort = "0.2.0"
r0 = "0.2.2"

@ -73,7 +73,7 @@ unsafe fn reset() -> ! {
#[link_section = ".text.boot"]
#[no_mangle]
pub unsafe extern "C" fn _boot_cores() -> ! {
use cortex_a::{asm, regs::mpidr_el1::*, regs::sp::*};
use cortex_a::{asm, regs::*};
const CORE_MASK: u64 = 0x3;
const STACK_START: u64 = 0x80_000;

@ -1,6 +1,6 @@
[[package]]
name = "cortex-a"
version = "1.1.0"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -10,7 +10,7 @@ dependencies = [
name = "kernel8"
version = "0.1.0"
dependencies = [
"cortex-a 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"cortex-a 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"raspi3_boot 0.1.0",
"register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -29,7 +29,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
name = "raspi3_boot"
version = "0.1.0"
dependencies = [
"cortex-a 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"cortex-a 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -48,7 +48,7 @@ version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[metadata]
"checksum cortex-a 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "883a29b1bd91667bb31da74ab66f9642f0f53cec6afae505e7efb664763afd00"
"checksum cortex-a 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bbb5d3c4a2e15b96e076a50c5e7e292585c902bb830f31d6dab0927f8a4d655f"
"checksum panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc796c620f27056d4ffe7c558533fd67ae5af0fd8e919fbe38de803368af73e"
"checksum r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a38df5b15c8d5c7e8654189744d8e396bddc18ad48041a500ce52d6948941f"
"checksum register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "157a11ac0b1882ff4a527a92f911dd288df17367faaaa0c36f188cd61ec36fc1"

@ -5,7 +5,7 @@ authors = ["Andre Richter <andre.o.richter@gmail.com>"]
[dependencies]
raspi3_boot = { path = "raspi3_boot" }
cortex-a = "1.1.0"
cortex-a = "2.0.1"
register = "0.2.0"
[package.metadata.cargo-xbuild]

Binary file not shown.

@ -4,6 +4,6 @@ version = "0.1.0"
authors = ["Andre Richter <andre.o.richter@gmail.com>"]
[dependencies]
cortex-a = "1.1.0"
cortex-a = "2.0.1"
panic-abort = "0.2.0"
r0 = "0.2.2"

@ -73,7 +73,7 @@ unsafe fn reset() -> ! {
#[link_section = ".text.boot"]
#[no_mangle]
pub unsafe extern "C" fn _boot_cores() -> ! {
use cortex_a::{asm, regs::mpidr_el1::*, regs::sp::*};
use cortex_a::{asm, regs::*};
const CORE_MASK: u64 = 0x3;
const STACK_START: u64 = 0x80_000;

@ -24,10 +24,7 @@
use super::MMIO_BASE;
use core::ops;
use cortex_a::{
asm,
regs::{cntfrq_el0::*, cntp_ctl_el0::*, cntp_tval_el0::*},
};
use cortex_a::{asm, regs::*};
use register::mmio::*;
const DELAY_BASE: u32 = MMIO_BASE + 0x3004;

@ -1,6 +1,6 @@
[[package]]
name = "cortex-a"
version = "1.1.0"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -10,7 +10,7 @@ dependencies = [
name = "kernel8"
version = "0.1.0"
dependencies = [
"cortex-a 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"cortex-a 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"raspi3_boot 0.1.0",
"register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -29,7 +29,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
name = "raspi3_boot"
version = "0.1.0"
dependencies = [
"cortex-a 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"cortex-a 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -48,7 +48,7 @@ version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[metadata]
"checksum cortex-a 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "883a29b1bd91667bb31da74ab66f9642f0f53cec6afae505e7efb664763afd00"
"checksum cortex-a 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bbb5d3c4a2e15b96e076a50c5e7e292585c902bb830f31d6dab0927f8a4d655f"
"checksum panic-abort 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6bc796c620f27056d4ffe7c558533fd67ae5af0fd8e919fbe38de803368af73e"
"checksum r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a38df5b15c8d5c7e8654189744d8e396bddc18ad48041a500ce52d6948941f"
"checksum register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "157a11ac0b1882ff4a527a92f911dd288df17367faaaa0c36f188cd61ec36fc1"

@ -5,7 +5,7 @@ authors = ["Andre Richter <andre.o.richter@gmail.com>"]
[dependencies]
raspi3_boot = { path = "raspi3_boot" }
cortex-a = "1.1.0"
cortex-a = "2.0.1"
register = "0.2.0"
[package.metadata.cargo-xbuild]

Binary file not shown.

@ -4,6 +4,6 @@ version = "0.1.0"
authors = ["Andre Richter <andre.o.richter@gmail.com>"]
[dependencies]
cortex-a = "1.1.0"
cortex-a = "2.0.1"
panic-abort = "0.2.0"
r0 = "0.2.2"

@ -73,7 +73,7 @@ unsafe fn reset() -> ! {
#[link_section = ".text.boot"]
#[no_mangle]
pub unsafe extern "C" fn _boot_cores() -> ! {
use cortex_a::{asm, regs::mpidr_el1::*, regs::sp::*};
use cortex_a::{asm, regs::*};
const CORE_MASK: u64 = 0x3;
const STACK_START: u64 = 0x80_000;

@ -24,10 +24,7 @@
use super::MMIO_BASE;
use core::ops;
use cortex_a::{
asm,
regs::{cntfrq_el0::*, cntp_ctl_el0::*, cntp_tval_el0::*},
};
use cortex_a::{asm, regs::*};
use register::mmio::*;
const DELAY_BASE: u32 = MMIO_BASE + 0x3004;

Loading…
Cancel
Save