project:cfg:BoardConfig_IPC: Added fastboot BoardConfig file and firmware post-scripts, distinguishing between the BoardConfigs for Luckfox Pico Pro and Luckfox Pico Max. project:app: Added fastboot_client and rk_smart_door for quick boot applications; updated rkipc app to adapt to the latest media library. media:samples: Added more usage examples. media:rockit: Fixed bugs; removed support for retrieving data frames from VPSS. media:isp: Updated rkaiq library and related tools to support connection to RKISP_Tuner. sysdrv:Makefile: Added support for compiling drv_ko on Luckfox Pico Ultra W using Ubuntu; added support for custom root filesystem. sysdrv:tools:board: Updated Buildroot optional mirror sources, updated some software versions, and stored device tree files and configuration files that undergo multiple modifications for U-Boot and kernel separately. sysdrv:source:mcu: Used RISC-V MCU SDK with RT-Thread system, mainly for initializing camera AE during quick boot. sysdrv:source:uboot: Added support for fastboot; added high baud rate DDR bin for serial firmware upgrades. sysdrv:source:kernel: Upgraded to version 5.10.160; increased NPU frequency for RV1106G3; added support for fastboot. Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
72 lines
1.6 KiB
C
72 lines
1.6 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Rockchip UFS Host Controller driver
|
|
*
|
|
* Copyright (C) 2024 Rockchip Electronics Co.Ltd.
|
|
*/
|
|
|
|
#ifndef _UFS_ROCKCHIP_H_
|
|
#define _UFS_ROCKCHIP_H_
|
|
|
|
#define UFS_MAX_CLKS 3
|
|
|
|
#define SEL_TX_LANE0 0x0
|
|
#define SEL_TX_LANE1 0x1
|
|
#define SEL_TX_LANE2 0x2
|
|
#define SEL_TX_LANE3 0x3
|
|
#define SEL_RX_LANE0 0x4
|
|
#define SEL_RX_LANE1 0x5
|
|
#define SEL_RX_LANE2 0x6
|
|
#define SEL_RX_LANE3 0x7
|
|
|
|
#define MIB_T_DBG_CPORT_TX_ENDIAN 0xc022
|
|
#define MIB_T_DBG_CPORT_RX_ENDIAN 0xc023
|
|
|
|
/* Vendor specific attributes */
|
|
enum dwc_specific_registers {
|
|
DWC_UFS_REG_HCLKDIV = 0xFC,
|
|
};
|
|
|
|
/* Clock Divider Values: Hex equivalent of frequency in MHz */
|
|
enum clk_div_values {
|
|
DWC_UFS_REG_HCLKDIV_DIV_62_5 = 0x3e,
|
|
DWC_UFS_REG_HCLKDIV_DIV_125 = 0x7d,
|
|
DWC_UFS_REG_HCLKDIV_DIV_200 = 0xc8,
|
|
};
|
|
|
|
/* Selector Index */
|
|
enum selector_index {
|
|
SELIND_LN0_TX = 0x00,
|
|
SELIND_LN1_TX = 0x01,
|
|
SELIND_LN0_RX = 0x04,
|
|
SELIND_LN1_RX = 0x05,
|
|
};
|
|
|
|
struct ufshcd_dme_attr_val {
|
|
u32 attr_sel;
|
|
u32 mib_val;
|
|
u8 peer;
|
|
};
|
|
|
|
struct ufs_rockchip_host {
|
|
struct ufs_hba *hba;
|
|
void __iomem *ufs_phy_ctrl;
|
|
void __iomem *ufs_sys_ctrl;
|
|
void __iomem *mphy_base;
|
|
struct reset_control *rst;
|
|
struct clk ref_out_clk;
|
|
uint64_t caps;
|
|
uint32_t phy_config_mode;
|
|
bool in_suspend;
|
|
};
|
|
|
|
#define ufs_sys_writel(base, val, reg) \
|
|
writel((val), (base) + (reg))
|
|
#define ufs_sys_readl(base, reg) readl((base) + (reg))
|
|
#define ufs_sys_set_bits(base, mask, reg) \
|
|
ufs_sys_writel((base), ((mask) | (ufs_sys_readl((base), (reg)))), (reg))
|
|
#define ufs_sys_ctrl_clr_bits(base, mask, reg) \
|
|
ufs_sys_writel((base), ((~(mask)) & (ufs_sys_readl((base), (reg)))), (reg))
|
|
|
|
#endif /* _UFS_ROCKCHIP_H_ */
|