1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Copyright (c) 2020 Rockchip Electronics Co. Ltd. 4 * 5 * Author: Shunqing Chen csq@rock-chips.com> 6 */ 7 8 #ifndef _RK628_COMBRXPHY_H 9 #define _RK628_COMBRXPHY_H 10 11 #define COMBRX_REG(x) ((x) + 0x10000) 12 13 int rk628_rxphy_power_on(struct rk628 *rk628, int f); 14 int rk628_rxphy_power_off(struct rk628 *rk628); 15 16 #endif 17