Changeset View
Changeset View
Standalone View
Standalone View
sys/arm64/arm64/gic_v3_var.h
Show First 20 Lines • Show All 47 Lines • ▼ Show 20 Lines | struct gic_redists { | ||||
/* | /* | ||||
* Re-Distributor region description. | * Re-Distributor region description. | ||||
* We will have few of those depending | * We will have few of those depending | ||||
* on the #redistributor-regions property in FDT. | * on the #redistributor-regions property in FDT. | ||||
*/ | */ | ||||
struct resource ** regions; | struct resource ** regions; | ||||
/* Number of Re-Distributor regions */ | /* Number of Re-Distributor regions */ | ||||
u_int nregions; | u_int nregions; | ||||
/* | |||||
* Whether to treat each region as a single Re-Distributor page or a | |||||
* series of contiguous pages (i.e. from each ACPI MADT GICC's GICR | |||||
* Base Address field) | |||||
*/ | |||||
bool single; | |||||
imp: Bool? | |||||
Done Inline ActionsWas to be consistent with line 80... but now I see line 44 uses bool jrtc27: Was to be consistent with line 80... but now I see line 44 uses bool | |||||
/* Per-CPU Re-Distributor data */ | /* Per-CPU Re-Distributor data */ | ||||
struct redist_pcpu *pcpu; | struct redist_pcpu *pcpu; | ||||
}; | }; | ||||
struct gic_v3_softc { | struct gic_v3_softc { | ||||
device_t dev; | device_t dev; | ||||
struct resource ** gic_res; | struct resource ** gic_res; | ||||
struct mtx gic_mtx; | struct mtx gic_mtx; | ||||
▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines |
Bool?