2020-03-05 22:28:18 -06:00
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright (c) 2012-2018, The Linux Foundation. All rights reserved.
2021-03-26 10:11:15 -05:00
* Copyright ( C ) 2019 - 2021 Linaro Ltd .
2020-03-05 22:28:18 -06:00
*/
# ifndef _IPA_DATA_H_
# define _IPA_DATA_H_
# include <linux/types.h>
# include "ipa_version.h"
# include "ipa_endpoint.h"
# include "ipa_mem.h"
/**
* DOC : IPA / GSI Configuration Data
*
* Boot - time configuration data is used to define the configuration of the
* IPA and GSI resources to use for a given platform . This data is supplied
* via the Device Tree match table , associated with a particular compatible
2021-03-20 10:57:07 -05:00
* string . The data defines information about how resources , endpoints and
2021-08-20 11:01:28 -05:00
* channels , memory , power and so on are allocated and used for the
2021-03-20 10:57:07 -05:00
* platform .
2020-03-05 22:28:18 -06:00
*
* Resources are data structures used internally by the IPA hardware . The
* configuration data defines the number ( or limits of the number ) of various
* types of these resources .
*
* Endpoint configuration data defines properties of both IPA endpoints and
* GSI channels . A channel is a GSI construct , and represents a single
* communication path between the IPA and a particular execution environment
* ( EE ) , such as the AP or Modem . Each EE has a set of channels associated
* with it , and each channel has an ID unique for that EE . For the most part
* the only GSI channels of concern to this driver belong to the AP
*
* An endpoint is an IPA construct representing a single channel anywhere
* in the system . An IPA endpoint ID maps directly to an ( EE , channel_id )
* pair . Generally , this driver is concerned with only endpoints associated
* with the AP , however this will change when support for routing ( etc . ) is
* added . IPA endpoint and GSI channel configuration data are defined
* together , establishing the endpoint_id - > ( EE , channel_id ) mapping .
*
* Endpoint configuration data consists of three parts : properties that
* are common to IPA and GSI ( EE ID , channel ID , endpoint ID , and direction ) ;
* properties associated with the GSI channel ; and properties associated with
* the IPA endpoint .
*/
2021-03-26 10:11:22 -05:00
/* The maximum possible number of source or destination resource groups */
# define IPA_RESOURCE_GROUP_MAX 8
2020-03-05 22:28:18 -06:00
2021-03-19 10:24:22 -05:00
/** enum ipa_qsb_master_id - array index for IPA QSB configuration data */
enum ipa_qsb_master_id {
IPA_QSB_MASTER_DDR ,
IPA_QSB_MASTER_PCIE ,
} ;
/**
* struct ipa_qsb_data - Qualcomm System Bus configuration data
* @ max_writes : Maximum outstanding write requests for this master
* @ max_reads : Maximum outstanding read requests for this master
2021-03-20 10:57:04 -05:00
* @ max_reads_beats : Max outstanding read bytes in 8 - byte " beats " ( if non - zero )
2021-03-19 10:24:22 -05:00
*/
struct ipa_qsb_data {
u8 max_writes ;
u8 max_reads ;
2021-03-20 10:57:04 -05:00
u8 max_reads_beats ; /* Not present for IPA v3.5.1 */
2021-03-19 10:24:22 -05:00
} ;
2020-03-05 22:28:18 -06:00
/**
* struct gsi_channel_data - GSI channel configuration data
* @ tre_count : number of TREs in the channel ring
* @ event_count : number of slots in the associated event ring
* @ tlv_count : number of entries in channel ' s TLV FIFO
*
* A GSI channel is a unidirectional means of transferring data to or
* from ( and through ) the IPA . A GSI channel has a ring buffer made
2021-03-20 10:57:07 -05:00
* up of " transfer ring elements " ( TREs ) that specify individual data
* transfers or IPA immediate commands . TREs are filled by the AP ,
* and control is passed to IPA hardware by writing the last written
* element into a doorbell register .
2020-03-05 22:28:18 -06:00
*
* When data transfer commands have completed the GSI generates an
* event ( a structure of data ) and optionally signals the AP with
* an interrupt . Event structures are implemented by another ring
* buffer , directed toward the AP from the IPA .
*
* The input to a GSI channel is a FIFO of type / length / value ( TLV )
* elements , and the size of this FIFO limits the number of TREs
* that can be included in a single transaction .
*/
struct gsi_channel_data {
2021-03-28 12:31:10 -05:00
u16 tre_count ; /* must be a power of 2 */
u16 event_count ; /* must be a power of 2 */
2020-03-05 22:28:18 -06:00
u8 tlv_count ;
} ;
/**
* struct ipa_endpoint_tx_data - configuration data for TX endpoints
2021-03-20 10:57:06 -05:00
* @ seq_type : primary packet processing sequencer type
* @ seq_rep_type : sequencer type for replication processing
2020-03-05 22:28:18 -06:00
* @ status_endpoint : endpoint to which status elements are sent
*
* The @ status_endpoint is only valid if the endpoint ' s @ status_enable
* flag is set .
*/
struct ipa_endpoint_tx_data {
2021-03-20 10:57:06 -05:00
enum ipa_seq_type seq_type ;
enum ipa_seq_rep_type seq_rep_type ;
2020-03-05 22:28:18 -06:00
enum ipa_endpoint_name status_endpoint ;
} ;
/**
* struct ipa_endpoint_rx_data - configuration data for RX endpoints
* @ pad_align : power - of - 2 boundary to which packet payload is aligned
* @ aggr_close_eof : whether aggregation closes on end - of - frame
*
* With each packet it transfers , the IPA hardware can perform certain
* transformations of its packet data . One of these is adding pad bytes
* to the end of the packet data so the result ends on a power - of - 2 boundary .
*
* It is also able to aggregate multiple packets into a single receive buffer .
* Aggregation is " open " while a buffer is being filled , and " closes " when
* certain criteria are met . One of those criteria is the sender indicating
* a " frame " consisting of several transfers has ended .
*/
struct ipa_endpoint_rx_data {
u32 pad_align ;
bool aggr_close_eof ;
} ;
/**
* struct ipa_endpoint_config_data - IPA endpoint hardware configuration
2020-10-28 14:41:46 -05:00
* @ resource_group : resource group to assign endpoint to
2020-03-05 22:28:18 -06:00
* @ checksum : whether checksum offload is enabled
* @ qmap : whether endpoint uses QMAP protocol
* @ aggregation : whether endpoint supports aggregation
* @ status_enable : whether endpoint uses status elements
* @ dma_mode : whether endpoint operates in DMA mode
* @ dma_endpoint : peer endpoint , if operating in DMA mode
* @ tx : TX - specific endpoint information ( see above )
* @ rx : RX - specific endpoint information ( see above )
*/
struct ipa_endpoint_config_data {
2020-10-28 14:41:46 -05:00
u32 resource_group ;
2020-03-05 22:28:18 -06:00
bool checksum ;
bool qmap ;
bool aggregation ;
bool status_enable ;
bool dma_mode ;
enum ipa_endpoint_name dma_endpoint ;
union {
struct ipa_endpoint_tx_data tx ;
struct ipa_endpoint_rx_data rx ;
} ;
} ;
/**
* struct ipa_endpoint_data - IPA endpoint configuration data
* @ filter_support : whether endpoint supports filtering
* @ config : hardware configuration ( see above )
*
* Not all endpoints support the IPA filtering capability . A filter table
* defines the filters to apply for those endpoints that support it . The
* AP is responsible for initializing this table , and it must include entries
* for non - AP endpoints . For this reason we define * all * endpoints used
* in the system , and indicate whether they support filtering .
*
* The remaining endpoint configuration data applies only to AP endpoints .
*/
struct ipa_endpoint_data {
bool filter_support ;
2021-03-20 10:57:06 -05:00
/* Everything else is specified only for AP endpoints */
2020-03-05 22:28:18 -06:00
struct ipa_endpoint_config_data config ;
} ;
/**
* struct ipa_gsi_endpoint_data - GSI channel / IPA endpoint data
2021-03-26 10:11:15 -05:00
* @ ee_id : GSI execution environment ID
* @ channel_id : GSI channel ID
* @ endpoint_id : IPA endpoint ID
* @ toward_ipa : direction of data transfer
* @ channel : GSI channel configuration data ( see above )
* @ endpoint : IPA endpoint configuration data ( see above )
2020-03-05 22:28:18 -06:00
*/
struct ipa_gsi_endpoint_data {
u8 ee_id ; /* enum gsi_ee_id */
u8 channel_id ;
u8 endpoint_id ;
bool toward_ipa ;
struct gsi_channel_data channel ;
struct ipa_endpoint_data endpoint ;
} ;
/**
* struct ipa_resource_limits - minimum and maximum resource counts
* @ min : minimum number of resources of a given type
* @ max : maximum number of resources of a given type
*/
struct ipa_resource_limits {
u32 min ;
u32 max ;
} ;
/**
2021-03-26 10:11:19 -05:00
* struct ipa_resource - resource group source or destination resource usage
* @ limits : array of resource limits , indexed by group
2020-03-05 22:28:18 -06:00
*/
2021-03-26 10:11:19 -05:00
struct ipa_resource {
2021-03-26 10:11:18 -05:00
struct ipa_resource_limits limits [ IPA_RESOURCE_GROUP_MAX ] ;
2020-03-05 22:28:18 -06:00
} ;
/**
* struct ipa_resource_data - IPA resource configuration data
2021-03-26 10:11:21 -05:00
* @ rsrc_group_src_count : number of source resource groups supported
* @ rsrc_group_dst_count : number of destination resource groups supported
2020-03-05 22:28:18 -06:00
* @ resource_src_count : number of entries in the resource_src array
* @ resource_src : source endpoint group resources
* @ resource_dst_count : number of entries in the resource_dst array
* @ resource_dst : destination endpoint group resources
*
* In order to manage quality of service between endpoints , certain resources
* required for operation are allocated to groups of endpoints . Generally
* this information is invisible to the AP , but the AP is responsible for
* programming it at initialization time , so we specify it here .
*/
struct ipa_resource_data {
2021-03-26 10:11:21 -05:00
u32 rsrc_group_src_count ;
u32 rsrc_group_dst_count ;
2020-03-05 22:28:18 -06:00
u32 resource_src_count ;
2021-03-26 10:11:19 -05:00
const struct ipa_resource * resource_src ;
2020-03-05 22:28:18 -06:00
u32 resource_dst_count ;
2021-03-26 10:11:19 -05:00
const struct ipa_resource * resource_dst ;
2020-03-05 22:28:18 -06:00
} ;
/**
2020-11-19 16:40:39 -06:00
* struct ipa_mem_data - description of IPA memory regions
2020-05-04 12:58:57 -05:00
* @ local_count : number of regions defined in the local [ ] array
* @ local : array of IPA - local memory region descriptors
2020-05-04 12:58:58 -05:00
* @ imem_addr : physical address of IPA region within IMEM
* @ imem_size : size in bytes of IPA IMEM region
2020-05-04 12:58:59 -05:00
* @ smem_id : item identifier for IPA region within SMEM memory
2021-03-20 10:57:07 -05:00
* @ smem_size : size in bytes of the IPA SMEM region
2020-03-05 22:28:18 -06:00
*/
struct ipa_mem_data {
2020-05-04 12:58:57 -05:00
u32 local_count ;
const struct ipa_mem * local ;
2020-05-04 12:58:58 -05:00
u32 imem_addr ;
u32 imem_size ;
2020-05-04 12:58:59 -05:00
u32 smem_id ;
u32 smem_size ;
2020-03-05 22:28:18 -06:00
} ;
2020-11-19 16:40:39 -06:00
/**
2021-01-15 06:50:44 -06:00
* struct ipa_interconnect_data - description of IPA interconnect bandwidths
2021-01-15 06:50:48 -06:00
* @ name : Interconnect name ( matches interconnect - name in DT )
2021-01-15 06:50:44 -06:00
* @ peak_bandwidth : Peak interconnect bandwidth ( in 1000 byte / sec units )
* @ average_bandwidth : Average interconnect bandwidth ( in 1000 byte / sec units )
2020-11-19 16:40:39 -06:00
*/
struct ipa_interconnect_data {
2021-01-15 06:50:48 -06:00
const char * name ;
2021-01-15 06:50:44 -06:00
u32 peak_bandwidth ;
u32 average_bandwidth ;
2020-11-19 16:40:39 -06:00
} ;
/**
2021-08-20 11:01:28 -05:00
* struct ipa_power_data - description of IPA power configuration data
2020-11-19 16:40:39 -06:00
* @ core_clock_rate : Core clock rate ( Hz )
2021-01-15 06:50:50 -06:00
* @ interconnect_count : Number of entries in the interconnect_data array
* @ interconnect_data : IPA interconnect configuration data
2020-11-19 16:40:39 -06:00
*/
2021-08-20 11:01:28 -05:00
struct ipa_power_data {
2020-11-19 16:40:39 -06:00
u32 core_clock_rate ;
2021-01-15 06:50:50 -06:00
u32 interconnect_count ; /* # entries in interconnect_data[] */
const struct ipa_interconnect_data * interconnect_data ;
2020-11-19 16:40:39 -06:00
} ;
2020-03-05 22:28:18 -06:00
/**
* struct ipa_data - combined IPA / GSI configuration data
* @ version : IPA hardware version
2021-03-28 12:31:06 -05:00
* @ backward_compat : BCR register value ( prior to IPA v4 .5 only )
2021-03-19 10:24:22 -05:00
* @ qsb_count : number of entries in the qsb_data array
* @ qsb_data : Qualcomm System Bus configuration data
* @ endpoint_count : number of entries in the endpoint_data array
2020-03-05 22:28:18 -06:00
* @ endpoint_data : IPA endpoint / GSI channel data
* @ resource_data : IPA resource configuration data
2021-03-20 10:57:07 -05:00
* @ mem_data : IPA memory region data
2021-08-20 11:01:28 -05:00
* @ power_data : IPA power data
2020-03-05 22:28:18 -06:00
*/
struct ipa_data {
enum ipa_version version ;
2021-03-28 12:31:06 -05:00
u32 backward_compat ;
2021-03-20 10:57:07 -05:00
u32 qsb_count ; /* number of entries in qsb_data[] */
2021-03-19 10:24:22 -05:00
const struct ipa_qsb_data * qsb_data ;
2021-03-20 10:57:07 -05:00
u32 endpoint_count ; /* number of entries in endpoint_data[] */
2020-03-05 22:28:18 -06:00
const struct ipa_gsi_endpoint_data * endpoint_data ;
const struct ipa_resource_data * resource_data ;
2020-05-04 12:58:57 -05:00
const struct ipa_mem_data * mem_data ;
2021-08-20 11:01:28 -05:00
const struct ipa_power_data * power_data ;
2020-03-05 22:28:18 -06:00
} ;
2021-06-21 12:56:27 -05:00
extern const struct ipa_data ipa_data_v3_1 ;
2021-03-28 12:31:08 -05:00
extern const struct ipa_data ipa_data_v3_5_1 ;
2021-03-28 12:31:09 -05:00
extern const struct ipa_data ipa_data_v4_2 ;
2021-04-09 15:40:23 -05:00
extern const struct ipa_data ipa_data_v4_5 ;
2021-04-13 11:38:26 -05:00
extern const struct ipa_data ipa_data_v4_9 ;
2021-04-09 15:40:24 -05:00
extern const struct ipa_data ipa_data_v4_11 ;
2020-03-05 22:28:18 -06:00
# endif /* _IPA_DATA_H_ */