@web-font-path: "roboto-debian.css";
Loading...
Searching...
No Matches
busctrl.h
1// THIS HEADER FILE IS AUTOMATICALLY GENERATED -- DO NOT EDIT
2
8#ifndef _HARDWARE_STRUCTS_BUSCTRL_H
9#define _HARDWARE_STRUCTS_BUSCTRL_H
10
16#include "hardware/regs/busctrl.h"
17
18// Reference to datasheet: https://datasheets.raspberrypi.com/rp2040/rp2040-datasheet.pdf#tab-registerlist_busctrl
19//
20// The _REG_ macro is intended to help make the register navigable in your IDE (for example, using the "Go to Definition" feature)
21// _REG_(x) will link to the corresponding register in hardware/regs/busctrl.h.
22//
23// Bit-field descriptions are of the form:
24// BITMASK [BITRANGE] FIELDNAME (RESETVALUE) DESCRIPTION
25
28typedef enum bus_ctrl_perf_counter_rp2040 {
29 arbiter_rom_perf_event_access = 19,
30 arbiter_rom_perf_event_access_contested = 18,
31 arbiter_xip_main_perf_event_access = 17,
32 arbiter_xip_main_perf_event_access_contested = 16,
33 arbiter_sram0_perf_event_access = 15,
34 arbiter_sram0_perf_event_access_contested = 14,
35 arbiter_sram1_perf_event_access = 13,
36 arbiter_sram1_perf_event_access_contested = 12,
37 arbiter_sram2_perf_event_access = 11,
38 arbiter_sram2_perf_event_access_contested = 10,
39 arbiter_sram3_perf_event_access = 9,
40 arbiter_sram3_perf_event_access_contested = 8,
41 arbiter_sram4_perf_event_access = 7,
42 arbiter_sram4_perf_event_access_contested = 6,
43 arbiter_sram5_perf_event_access = 5,
44 arbiter_sram5_perf_event_access_contested = 4,
45 arbiter_fastperi_perf_event_access = 3,
46 arbiter_fastperi_perf_event_access_contested = 2,
47 arbiter_apb_perf_event_access = 1,
48 arbiter_apb_perf_event_access_contested = 0
49} bus_ctrl_perf_counter_t;
50
51typedef struct {
52 _REG_(BUSCTRL_PERFCTR0_OFFSET) // BUSCTRL_PERFCTR0
53 // Bus fabric performance counter 0
54 // 0x00ffffff [23:0] PERFCTR0 (0x000000) Busfabric saturating performance counter 0 +
55 io_rw_32 value;
56
57 _REG_(BUSCTRL_PERFSEL0_OFFSET) // BUSCTRL_PERFSEL0
58 // Bus fabric performance event select for PERFCTR0
59 // 0x0000001f [4:0] PERFSEL0 (0x1f) Select an event for PERFCTR0
60 io_rw_32 sel;
62
63typedef struct {
64 _REG_(BUSCTRL_BUS_PRIORITY_OFFSET) // BUSCTRL_BUS_PRIORITY
65 // Set the priority of each master for bus arbitration
66 // 0x00001000 [12] DMA_W (0) 0 - low priority, 1 - high priority
67 // 0x00000100 [8] DMA_R (0) 0 - low priority, 1 - high priority
68 // 0x00000010 [4] PROC1 (0) 0 - low priority, 1 - high priority
69 // 0x00000001 [0] PROC0 (0) 0 - low priority, 1 - high priority
70 io_rw_32 priority;
71
72 _REG_(BUSCTRL_BUS_PRIORITY_ACK_OFFSET) // BUSCTRL_BUS_PRIORITY_ACK
73 // Bus priority acknowledge
74 // 0x00000001 [0] BUS_PRIORITY_ACK (0) Goes to 1 once all arbiters have registered the new...
75 io_ro_32 priority_ack;
76
77 bus_ctrl_perf_hw_t counter[4];
79
80#define busctrl_hw ((busctrl_hw_t *)BUSCTRL_BASE)
81static_assert(sizeof (busctrl_hw_t) == 0x0028, "");
82
83#endif // _HARDWARE_STRUCTS_BUSCTRL_H
84
Definition busctrl.h:51
Definition busctrl.h:63