mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
imx8ulp: move struct mu_type to common header
Move struct mu_type to common header to make it reusable by upower and S400 Signed-off-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
parent
e8b68048e1
commit
4b9423e6f2
2 changed files with 26 additions and 18 deletions
|
@ -63,6 +63,31 @@
|
|||
#if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
|
||||
#include <asm/types.h>
|
||||
|
||||
struct mu_type {
|
||||
u32 ver;
|
||||
u32 par;
|
||||
u32 cr;
|
||||
u32 sr;
|
||||
u32 reserved0[60];
|
||||
u32 fcr;
|
||||
u32 fsr;
|
||||
u32 reserved1[2];
|
||||
u32 gier;
|
||||
u32 gcr;
|
||||
u32 gsr;
|
||||
u32 reserved2;
|
||||
u32 tcr;
|
||||
u32 tsr;
|
||||
u32 rcr;
|
||||
u32 rsr;
|
||||
u32 reserved3[52];
|
||||
u32 tr[16];
|
||||
u32 reserved4[16];
|
||||
u32 rr[16];
|
||||
u32 reserved5[14];
|
||||
u32 mu_attr;
|
||||
};
|
||||
|
||||
struct usbphy_regs {
|
||||
u32 usbphy_pwd; /* 0x000 */
|
||||
u32 usbphy_pwd_set; /* 0x004 */
|
||||
|
|
|
@ -10,29 +10,12 @@
|
|||
#include <dm/root.h>
|
||||
#include <dm/device-internal.h>
|
||||
#include <asm/arch/s400_api.h>
|
||||
#include <asm/arch/imx-regs.h>
|
||||
#include <linux/iopoll.h>
|
||||
#include <misc.h>
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
struct mu_type {
|
||||
u32 ver;
|
||||
u32 par;
|
||||
u32 cr;
|
||||
u32 sr;
|
||||
u32 reserved0[68];
|
||||
u32 tcr;
|
||||
u32 tsr;
|
||||
u32 rcr;
|
||||
u32 rsr;
|
||||
u32 reserved1[52];
|
||||
u32 tr[16];
|
||||
u32 reserved2[16];
|
||||
u32 rr[16];
|
||||
u32 reserved4[14];
|
||||
u32 mu_attr;
|
||||
};
|
||||
|
||||
struct imx8ulp_mu {
|
||||
struct mu_type *base;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue