Skip to content

Commit

Permalink
riscv: sifive_e: prci: Update the PRCI register block size
Browse files Browse the repository at this point in the history
Currently the PRCI register block size is set to 0x8000, but in fact
0x1000 is enough, which is also what the manual says.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Chih-Min Chao <chihmin.chao@sifive.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
  • Loading branch information
lbmeng authored and palmer-dabbelt committed Sep 17, 2019
1 parent 1a5938a commit d073034
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion hw/riscv/sifive_e_prci.c
Expand Up @@ -87,7 +87,7 @@ static void sifive_e_prci_init(Object *obj)
SiFiveEPRCIState *s = SIFIVE_E_PRCI(obj);

memory_region_init_io(&s->mmio, obj, &sifive_e_prci_ops, s,
TYPE_SIFIVE_E_PRCI, 0x8000);
TYPE_SIFIVE_E_PRCI, SIFIVE_E_PRCI_REG_SIZE);
sysbus_init_mmio(SYS_BUS_DEVICE(obj), &s->mmio);

s->hfrosccfg = (SIFIVE_E_PRCI_HFROSCCFG_RDY | SIFIVE_E_PRCI_HFROSCCFG_EN);
Expand Down
2 changes: 2 additions & 0 deletions include/hw/riscv/sifive_e_prci.h
Expand Up @@ -47,6 +47,8 @@ enum {
SIFIVE_E_PRCI_PLLOUTDIV_DIV1 = (1 << 8)
};

#define SIFIVE_E_PRCI_REG_SIZE 0x1000

#define TYPE_SIFIVE_E_PRCI "riscv.sifive.e.prci"

#define SIFIVE_E_PRCI(obj) \
Expand Down

0 comments on commit d073034

Please sign in to comment.