History log of /rk3399_rockchip-uboot/include/amp.h (Results 1 – 5 of 5)
Revision Date Author Comments
# 8223aa47 08-May-2021 Joseph Chen <chenjh@rock-chips.com>

cpu: rockchip amp: add arm64_switch_amp_pe()

Merge other API into this function.

Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
Change-Id: Ie7b3d53930b2ad7a7e60e6ad4e67fab74d2239c7


# 31f8f6eb 24-Feb-2021 Joseph Chen <chenjh@rock-chips.com>

cpu: amp: support brought up rockchip fit image

./tools/mkimage -f amp.its -E -p 0xe00 amp.img

Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
Change-Id: Icdaf370900472622cf31df402aff84ecc6821fe4


# 39be8a08 07-Feb-2021 Joseph Chen <chenjh@rock-chips.com>

cpu: rockchip amp: support boot core0 as aarch32

Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
Change-Id: If2e74c0877c04c61cc219cda04682d26d6f957b2


# f06413e4 03-Feb-2021 Joseph Chen <chenjh@rock-chips.com>

cpu: rockchip amp: support set PE state

Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
Change-Id: I6b5eb621af1472983cdfbaebfdaa61a4c85b1856


# 4388deca 21-Mar-2019 Joseph Chen <chenjh@rock-chips.com>

dm: add amp uclass and rockchip amp driver support

- add amp uclass;
- add a simple rockchip amp driver.

An example for amps dts node configure:
amps {
compatible = "uboot,rockchip-amp";
status =

dm: add amp uclass and rockchip amp driver support

- add amp uclass;
- add a simple rockchip amp driver.

An example for amps dts node configure:
amps {
compatible = "uboot,rockchip-amp";
status = "okay";

amp@0 {
description = "mcu-os1";
partition = "mcu1";
cpu = <0x1>; // this is mpidr!
load = <0x800000>;
entry = <0x800000>;
memory = <0x800000 0x400000>;
};

amp@1 {
......
};

......
};

U-Boot loads "mcu-os1" firmware to "0x800000" address from partiton
"mcu1" for cpu[1], the cpu[1] entry address is 0x800000. And
U-Boot reserve memory from 0x800000 with 0x400000 size in order
to make it invisible for kernel.

Please use rockchip tool "mkkrnlimg" to pack firmware binary, example:
./scripts/mkkrnlimg mcu-os1.bin mcu-os1.img

Change-Id: I127d5d9f460ec0c1812a76fb4c3702e82f21c9a6
Signed-off-by: Joseph Chen <chenjh@rock-chips.com>

show more ...