mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
83d290c56f
When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini <trini@konsulko.com>
165 lines
2.3 KiB
C
165 lines
2.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2010 Freescale Semiconductor, Inc.
|
|
*/
|
|
#ifndef __PIXIS_H_
|
|
#define __PIXIS_H_ 1
|
|
|
|
/* PIXIS register set. */
|
|
#if defined(CONFIG_TARGET_MPC8536DS)
|
|
typedef struct pixis {
|
|
u8 id;
|
|
u8 ver;
|
|
u8 pver;
|
|
u8 csr;
|
|
u8 rst;
|
|
u8 rst2;
|
|
u8 aux1;
|
|
u8 spd;
|
|
u8 aux2;
|
|
u8 csr2;
|
|
u8 watch;
|
|
u8 led;
|
|
u8 pwr;
|
|
u8 res[3];
|
|
u8 vctl;
|
|
u8 vstat;
|
|
u8 vcfgen0;
|
|
u8 vcfgen1;
|
|
u8 vcore0;
|
|
u8 res1;
|
|
u8 vboot;
|
|
u8 vspeed[3];
|
|
u8 sclk[3];
|
|
u8 dclk[3];
|
|
u8 i2cdacr;
|
|
u8 vcoreacc[4];
|
|
u8 vcorecnt[3];
|
|
u8 vcoremax[2];
|
|
u8 vplatacc[4];
|
|
u8 vplatcnt[3];
|
|
u8 vplatmax[2];
|
|
u8 vtempacc[4];
|
|
u8 vtempcnt[3];
|
|
u8 vtempmax[2];
|
|
u8 res2[4];
|
|
} __attribute__ ((packed)) pixis_t;
|
|
|
|
#elif defined(CONFIG_TARGET_MPC8544DS)
|
|
typedef struct pixis {
|
|
u8 id;
|
|
u8 ver;
|
|
u8 pver;
|
|
u8 csr;
|
|
u8 rst;
|
|
u8 pwr;
|
|
u8 aux1;
|
|
u8 spd;
|
|
u8 res[8];
|
|
u8 vctl;
|
|
u8 vstat;
|
|
u8 vcfgen0;
|
|
u8 vcfgen1;
|
|
u8 vcore0;
|
|
u8 res1;
|
|
u8 vboot;
|
|
u8 vspeed[2];
|
|
u8 vclkh;
|
|
u8 vclkl;
|
|
u8 watch;
|
|
u8 led;
|
|
u8 vspeed2;
|
|
u8 res2[34];
|
|
} __attribute__ ((packed)) pixis_t;
|
|
|
|
#elif defined(CONFIG_TARGET_MPC8572DS)
|
|
typedef struct pixis {
|
|
u8 id;
|
|
u8 ver;
|
|
u8 pver;
|
|
u8 csr;
|
|
u8 rst;
|
|
u8 pwr1;
|
|
u8 aux1;
|
|
u8 spd;
|
|
u8 aux2;
|
|
u8 res[7];
|
|
u8 vctl;
|
|
u8 vstat;
|
|
u8 vcfgen0;
|
|
u8 vcfgen1;
|
|
u8 vcore0;
|
|
u8 res1;
|
|
u8 vboot;
|
|
u8 vspeed[3];
|
|
u8 res2[2];
|
|
u8 sclk[3];
|
|
u8 dclk[3];
|
|
u8 res3[2];
|
|
u8 watch;
|
|
u8 led;
|
|
u8 res4[25];
|
|
} __attribute__ ((packed)) pixis_t;
|
|
|
|
#elif defined(CONFIG_TARGET_MPC8610HPCD)
|
|
typedef struct pixis {
|
|
u8 id;
|
|
u8 ver; /* also called arch */
|
|
u8 pver;
|
|
u8 csr;
|
|
u8 rst;
|
|
u8 pwr;
|
|
u8 aux;
|
|
u8 spd;
|
|
u8 brdcfg0;
|
|
u8 brdcfg1;
|
|
u8 res[4];
|
|
u8 led;
|
|
u8 serno;
|
|
u8 vctl;
|
|
u8 vstat;
|
|
u8 vcfgen0;
|
|
u8 vcfgen1;
|
|
u8 vcore0;
|
|
u8 res1;
|
|
u8 vboot;
|
|
u8 vspeed[2];
|
|
u8 res2;
|
|
u8 sclk[3];
|
|
u8 res3;
|
|
u8 watch;
|
|
u8 res4[33];
|
|
} __attribute__ ((packed)) pixis_t;
|
|
|
|
#elif defined(CONFIG_TARGET_MPC8641HPCN)
|
|
typedef struct pixis {
|
|
u8 id;
|
|
u8 ver;
|
|
u8 pver;
|
|
u8 csr;
|
|
u8 rst;
|
|
u8 pwr;
|
|
u8 aux;
|
|
u8 spd;
|
|
u8 res[8];
|
|
u8 vctl;
|
|
u8 vstat;
|
|
u8 vcfgen0;
|
|
u8 vcfgen1;
|
|
u8 vcore0;
|
|
u8 res1;
|
|
u8 vboot;
|
|
u8 vspeed[2];
|
|
u8 vclkh;
|
|
u8 vclkl;
|
|
u8 watch;
|
|
u8 res3[36];
|
|
} __attribute__ ((packed)) pixis_t;
|
|
#else
|
|
#error Need to define pixis_t for this board
|
|
#endif
|
|
|
|
/* Pointer to the PIXIS register set */
|
|
#define pixis ((pixis_t *)PIXIS_BASE)
|
|
|
|
#endif /* __PIXIS_H_ */
|