Files
Linux_Drivers/u-boot-2021.10/arch/mips/mach-octeon/include/mach/cvmx-fuse.h
sam.xiang f8fc109960 [uboot] create uboot from github:
repo: https://github.com/u-boot/u-boot
	commit: d80bb749fab53da72c4a0e09b8c2d2aaa3103c91

Change-Id: Ie6434426e1ec15bc08bb1832798e371f3fd5fb29
2023-03-10 20:30:57 +08:00

72 lines
1.4 KiB
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (C) 2020 Marvell International Ltd.
*/
#ifndef __CVMX_FUSE_H__
#define __CVMX_FUSE_H__
/**
* Read a byte of fuse data
* @param node node to read from
* @param byte_addr address to read
*
* @return fuse value: 0 or 1
*/
static inline u8 cvmx_fuse_read_byte_node(u8 node, int byte_addr)
{
u64 val;
val = FIELD_PREP(MIO_FUS_RCMD_ADDR, byte_addr) | MIO_FUS_RCMD_PEND;
csr_wr_node(node, CVMX_MIO_FUS_RCMD, val);
do {
val = csr_rd_node(node, CVMX_MIO_FUS_RCMD);
} while (val & MIO_FUS_RCMD_PEND);
return FIELD_GET(MIO_FUS_RCMD_DAT, val);
}
/**
* Read a byte of fuse data
* @param byte_addr address to read
*
* @return fuse value: 0 or 1
*/
static inline u8 cvmx_fuse_read_byte(int byte_addr)
{
return cvmx_fuse_read_byte_node(0, byte_addr);
}
/**
* Read a single fuse bit
*
* @param node Node number
* @param fuse Fuse number (0-1024)
*
* @return fuse value: 0 or 1
*/
static inline int cvmx_fuse_read_node(u8 node, int fuse)
{
return (cvmx_fuse_read_byte_node(node, fuse >> 3) >> (fuse & 0x7)) & 1;
}
/**
* Read a single fuse bit
*
* @param fuse Fuse number (0-1024)
*
* @return fuse value: 0 or 1
*/
static inline int cvmx_fuse_read(int fuse)
{
return cvmx_fuse_read_node(0, fuse);
}
static inline int cvmx_octeon_fuse_locked(void)
{
return cvmx_fuse_read(123);
}
#endif /* __CVMX_FUSE_H__ */