raspberry3_bare/mmio.h

14 lines
236 B
C

#pragma once
// IO mapping
#define IO_BASE 0x3f000000
// Mini-UART mapping
#define MU_BASE (IO_BASE + 0x215000)
// GPIO mapping
#define GP_BASE (IO_BASE + 0x200000)
// videocore mbox system
#define VCORE_MBOX (IO_BASE + 0x0000B880)