xref: /openbmc/u-boot/drivers/usb/gadget/bcm_udc_otg.h (revision 2ca471379b471dc0d31459974d7cc4b54c824956)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2015 Broadcom Corporation.
4  */
5 
6 #ifndef __BCM_UDC_OTG_H
7 #define __BCM_UDC_OTG_H
8 
9 #include <common.h>
10 
11 static inline void wfld_set(uintptr_t addr, uint32_t fld_val, uint32_t fld_mask)
12 {
13 	writel(((readl(addr) & ~(fld_mask)) | (fld_val)), (addr));
14 }
15 
16 static inline void wfld_clear(uintptr_t addr, uint32_t fld_mask)
17 {
18 	writel((readl(addr) & ~(fld_mask)), (addr));
19 }
20 
21 #endif
22