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:
Peng Fan 2021-08-07 16:01:09 +08:00 committed by Stefano Babic
parent e8b68048e1
commit 4b9423e6f2
2 changed files with 26 additions and 18 deletions

View file

@ -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 */

View file

@ -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;
};