brintos

brintos / linux-shallow public Read only

0
0
Text · 5.6 KiB · 6c1ad28 Raw
179 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * Copyright(c) 2020 Intel Corporation4 *5 * Author: Cezary Rojewski <cezary.rojewski@intel.com>6 */7 8#ifndef __SND_SOC_INTEL_CATPT_REGS_H9#define __SND_SOC_INTEL_CATPT_REGS_H10 11#include <linux/bitops.h>12#include <linux/iopoll.h>13#include <uapi/linux/pci_regs.h>14 15#define CATPT_SHIM_REGS_SIZE	409616#define CATPT_DMA_REGS_SIZE	102417#define CATPT_DMA_COUNT		218#define CATPT_SSP_REGS_SIZE	51219 20/* DSP Shim registers */21 22#define CATPT_SHIM_CS1		0x0023#define CATPT_SHIM_ISC		0x1824#define CATPT_SHIM_ISD		0x2025#define CATPT_SHIM_IMC		0x2826#define CATPT_SHIM_IMD		0x3027#define CATPT_SHIM_IPCC		0x3828#define CATPT_SHIM_IPCD		0x4029#define CATPT_SHIM_CLKCTL	0x7830#define CATPT_SHIM_CS2		0x8031#define CATPT_SHIM_LTRC		0xE032#define CATPT_SHIM_HMDC		0xE833 34#define CATPT_CS_LPCS		BIT(31)35#define CATPT_CS_SFCR(ssp)	BIT(27 + (ssp))36#define CATPT_CS_S1IOCS		BIT(23)37#define CATPT_CS_S0IOCS		BIT(21)38#define CATPT_CS_PCE		BIT(15)39#define CATPT_CS_SDPM(ssp)	BIT(11 + (ssp))40#define CATPT_CS_STALL		BIT(10)41#define CATPT_CS_DCS		GENMASK(6, 4)42/* b100 DSP core & audio fabric high clock */43#define CATPT_CS_DCS_HIGH	(0x4 << 4)44#define CATPT_CS_SBCS(ssp)	BIT(2 + (ssp))45#define CATPT_CS_RST		BIT(1)46 47#define CATPT_ISC_IPCDB		BIT(1)48#define CATPT_ISC_IPCCD		BIT(0)49#define CATPT_ISD_DCPWM		BIT(31)50#define CATPT_ISD_IPCCB		BIT(1)51#define CATPT_ISD_IPCDD		BIT(0)52 53#define CATPT_IMC_IPCDB		BIT(1)54#define CATPT_IMC_IPCCD		BIT(0)55#define CATPT_IMD_IPCCB		BIT(1)56#define CATPT_IMD_IPCDD		BIT(0)57 58#define CATPT_IPCC_BUSY		BIT(31)59#define CATPT_IPCC_DONE		BIT(30)60#define CATPT_IPCD_BUSY		BIT(31)61#define CATPT_IPCD_DONE		BIT(30)62 63#define CATPT_CLKCTL_CFCIP	BIT(31)64#define CATPT_CLKCTL_SMOS	GENMASK(25, 24)65 66#define CATPT_HMDC_HDDA(e, ch)	BIT(8 * (e) + (ch))67 68/* defaults to reset SHIM registers to after each power cycle */69#define CATPT_CS_DEFAULT	0x8480040E70#define CATPT_ISC_DEFAULT	0x071#define CATPT_ISD_DEFAULT	0x072#define CATPT_IMC_DEFAULT	0x7FFF000373#define CATPT_IMD_DEFAULT	0x7FFF000374#define CATPT_IPCC_DEFAULT	0x075#define CATPT_IPCD_DEFAULT	0x076#define CATPT_CLKCTL_DEFAULT	0x7FF77#define CATPT_CS2_DEFAULT	0x078#define CATPT_LTRC_DEFAULT	0x079#define CATPT_HMDC_DEFAULT	0x080 81/* PCI Configuration registers */82 83#define CATPT_PCI_PMCAPID	0x8084#define CATPT_PCI_PMCS		(CATPT_PCI_PMCAPID + PCI_PM_CTRL)85#define CATPT_PCI_VDRTCTL0	0xA086#define CATPT_PCI_VDRTCTL2	0xA887 88#define CATPT_VDRTCTL2_DTCGE	BIT(10)89#define CATPT_VDRTCTL2_DCLCGE	BIT(1)90#define CATPT_VDRTCTL2_CGEALL	0xF7F91 92/* LPT PCI Configuration bits */93 94#define LPT_VDRTCTL0_DSRAMPGE(b)	BIT(16 + (b))95#define LPT_VDRTCTL0_DSRAMPGE_MASK	GENMASK(31, 16)96#define LPT_VDRTCTL0_ISRAMPGE(b)	BIT(6 + (b))97#define LPT_VDRTCTL0_ISRAMPGE_MASK	GENMASK(15, 6)98#define LPT_VDRTCTL0_D3SRAMPGD		BIT(2)99#define LPT_VDRTCTL0_D3PGD		BIT(1)100#define LPT_VDRTCTL0_APLLSE		BIT(0)101 102/* WPT PCI Configuration bits */103 104#define WPT_VDRTCTL0_DSRAMPGE(b)	BIT(12 + (b))105#define WPT_VDRTCTL0_DSRAMPGE_MASK	GENMASK(31, 12)106#define WPT_VDRTCTL0_ISRAMPGE(b)	BIT(2 + (b))107#define WPT_VDRTCTL0_ISRAMPGE_MASK	GENMASK(11, 2)108#define WPT_VDRTCTL0_D3SRAMPGD		BIT(1)109#define WPT_VDRTCTL0_D3PGD		BIT(0)110 111#define WPT_VDRTCTL2_APLLSE		BIT(31)112 113/* defaults to reset SSP registers to after each power cycle */114#define CATPT_SSC0_DEFAULT		0x0115#define CATPT_SSC1_DEFAULT		0x0116#define CATPT_SSS_DEFAULT		0xF004117#define CATPT_SSIT_DEFAULT		0x0118#define CATPT_SSD_DEFAULT		0xC43893A3119#define CATPT_SSTO_DEFAULT		0x0120#define CATPT_SSPSP_DEFAULT		0x0121#define CATPT_SSTSA_DEFAULT		0x0122#define CATPT_SSRSA_DEFAULT		0x0123#define CATPT_SSTSS_DEFAULT		0x0124#define CATPT_SSCR2_DEFAULT		0x0125#define CATPT_SSPSP2_DEFAULT		0x0126 127/* Physically the same block, access address differs between host and dsp */128#define CATPT_DSP_DRAM_OFFSET		0x400000129#define catpt_to_host_offset(offset)	((offset) & ~(CATPT_DSP_DRAM_OFFSET))130#define catpt_to_dsp_offset(offset)	((offset) | CATPT_DSP_DRAM_OFFSET)131 132#define CATPT_MEMBLOCK_SIZE	0x8000133#define catpt_num_dram(cdev)	(hweight_long((cdev)->spec->dram_mask))134#define catpt_num_iram(cdev)	(hweight_long((cdev)->spec->iram_mask))135#define catpt_dram_size(cdev)	(catpt_num_dram(cdev) * CATPT_MEMBLOCK_SIZE)136#define catpt_iram_size(cdev)	(catpt_num_iram(cdev) * CATPT_MEMBLOCK_SIZE)137 138/* registry I/O helpers */139 140#define catpt_shim_addr(cdev) \141	((cdev)->lpe_ba + (cdev)->spec->host_shim_offset)142#define catpt_dma_addr(cdev, dma) \143	((cdev)->lpe_ba + (cdev)->spec->host_dma_offset[dma])144#define catpt_ssp_addr(cdev, ssp) \145	((cdev)->lpe_ba + (cdev)->spec->host_ssp_offset[ssp])146#define catpt_inbox_addr(cdev) \147	((cdev)->lpe_ba + (cdev)->ipc.config.inbox_offset)148#define catpt_outbox_addr(cdev) \149	((cdev)->lpe_ba + (cdev)->ipc.config.outbox_offset)150 151#define catpt_writel_ssp(cdev, ssp, reg, val) \152	writel(val, catpt_ssp_addr(cdev, ssp) + (reg))153 154#define catpt_readl_shim(cdev, reg) \155	readl(catpt_shim_addr(cdev) + CATPT_SHIM_##reg)156#define catpt_writel_shim(cdev, reg, val) \157	writel(val, catpt_shim_addr(cdev) + CATPT_SHIM_##reg)158#define catpt_updatel_shim(cdev, reg, mask, val) \159	catpt_writel_shim(cdev, reg, \160			  (catpt_readl_shim(cdev, reg) & ~(mask)) | (val))161 162#define catpt_readl_poll_shim(cdev, reg, val, cond, delay_us, timeout_us) \163	readl_poll_timeout(catpt_shim_addr(cdev) + CATPT_SHIM_##reg, \164			   val, cond, delay_us, timeout_us)165 166#define catpt_readl_pci(cdev, reg) \167	readl(cdev->pci_ba + CATPT_PCI_##reg)168#define catpt_writel_pci(cdev, reg, val) \169	writel(val, cdev->pci_ba + CATPT_PCI_##reg)170#define catpt_updatel_pci(cdev, reg, mask, val) \171	catpt_writel_pci(cdev, reg, \172			 (catpt_readl_pci(cdev, reg) & ~(mask)) | (val))173 174#define catpt_readl_poll_pci(cdev, reg, val, cond, delay_us, timeout_us) \175	readl_poll_timeout((cdev)->pci_ba + CATPT_PCI_##reg, \176			   val, cond, delay_us, timeout_us)177 178#endif179