Lines Matching defs:decprot_id
90 * decprot_id : ID of the IP
93 void etzpc_configure_decprot(uint32_t decprot_id,
96 uintptr_t offset = 4U * (decprot_id / IDS_PER_DECPROT_REGS);
97 uint32_t shift = (decprot_id % IDS_PER_DECPROT_REGS) << DECPROT_SHIFT;
100 assert(valid_decprot_id(decprot_id));
109 * decprot_id : ID of the IP
112 enum etzpc_decprot_attributes etzpc_get_decprot(uint32_t decprot_id)
114 uintptr_t offset = 4U * (decprot_id / IDS_PER_DECPROT_REGS);
115 uint32_t shift = (decprot_id % IDS_PER_DECPROT_REGS) << DECPROT_SHIFT;
119 assert(valid_decprot_id(decprot_id));
129 * decprot_id : ID of the IP
131 void etzpc_lock_decprot(uint32_t decprot_id)
133 uintptr_t offset = 4U * (decprot_id / IDS_PER_DECPROT_LOCK_REGS);
134 uint32_t shift = BIT(decprot_id % IDS_PER_DECPROT_LOCK_REGS);
137 assert(valid_decprot_id(decprot_id));