summaryrefslogtreecommitdiff
path: root/src/soc/broadcom/cygnus/include/soc/shmoo_and28/phy_reg_access.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/broadcom/cygnus/include/soc/shmoo_and28/phy_reg_access.h')
-rw-r--r--src/soc/broadcom/cygnus/include/soc/shmoo_and28/phy_reg_access.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/soc/broadcom/cygnus/include/soc/shmoo_and28/phy_reg_access.h b/src/soc/broadcom/cygnus/include/soc/shmoo_and28/phy_reg_access.h
deleted file mode 100644
index 416b3985f2..0000000000
--- a/src/soc/broadcom/cygnus/include/soc/shmoo_and28/phy_reg_access.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
-* Copyright (C) 2015 Broadcom Corporation
-*
-* This program is free software; you can redistribute it and/or
-* modify it under the terms of the GNU General Public License as
-* published by the Free Software Foundation version 2.
-*
-* This program is distributed "as is" WITHOUT ANY WARRANTY of any
-* kind, whether express or implied; without even the implied warranty
-* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-* GNU General Public License for more details.
-*/
-
-#ifndef __SOC_BROADCOM_CYGNUS_PHY_REG_ACCESS_H__
-#define __SOC_BROADCOM_CYGNUS_PHY_REG_ACCESS_H__
-
-#include <soc/cygnus_types.h>
-#define GLOBAL_REG_RBUS_START 0x0000000000000000LL
-
-uint32 REGRD(uint32 address);
-uint32 REGWR(uint32 address, uint32 data);
-
-#define DDR_PHY_REG_READ(_unit, _pc, flags, _reg_addr, _val) \
- (*(uint32 *)_val = REGRD((_pc) + (_reg_addr)))
-/* soc_ddr40_phy_reg_ci_read((_unit), (_pc), (_reg_addr), (_val)) */
-#define DDR_PHY_REG_WRITE(_unit, _pc, _flags, _reg_addr, _val) \
- REGWR((_pc) + (_reg_addr), (_val))
-/* soc_ddr40_phy_reg_ci_write((_unit), (_pc), (_reg_addr), (_val)) */
-#define DDR_PHY_REG_MODIFY(_unit, _pc, _flags, _reg_addr, _val, _mask) \
- REGWR((_pc) + (_reg_addr), (REGRD((_pc) + (_reg_addr)) & ~(_mask)) | ((_val) & (_mask)))
-/* soc_ddr40_phy_reg_ci_modify((_unit), (_pc), (_reg_addr), (_val), (_mask)) */
-#define DDR_PHY_GET_FIELD(m, c, r, f) \
- GET_FIELD(m, c, r, f)
-#define DDR_PHY_SET_FIELD(m, c, r, f, d) \
- SET_FIELD(m, c, r, f, d)
-#endif /* __SOC_BROADCOM_CYGNUS_PHY_REG_ACCESS_H__ */