Commit 6f6746d7 authored by David S. Miller's avatar David S. Miller

Merge branch 'net-ipa-simple-refactorizations'

Alex Elder says:

====================
net: ipa: simple refactorizations

This series makes three small changes to some endpoint configuration
code.  The first uses a constant to represent the frequency of an
internal clock used for timers in the IPA.  The second modifies a
limit used so it matches Qualcomm's internal code.  And the third
reworks a few lines of code, eliminating a multi-line function call.
====================
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents 8c964397 9e88cb5f
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
#define IPA_ENDPOINT_QMAP_METADATA_MASK 0x000000ff /* host byte order */ #define IPA_ENDPOINT_QMAP_METADATA_MASK 0x000000ff /* host byte order */
#define IPA_ENDPOINT_RESET_AGGR_RETRY_MAX 3 #define IPA_ENDPOINT_RESET_AGGR_RETRY_MAX 3
#define IPA_AGGR_TIME_LIMIT_DEFAULT 1000 /* microseconds */ #define IPA_AGGR_TIME_LIMIT_DEFAULT 500 /* microseconds */
/** enum ipa_status_opcode - status element opcode hardware values */ /** enum ipa_status_opcode - status element opcode hardware values */
enum ipa_status_opcode { enum ipa_status_opcode {
...@@ -576,17 +576,20 @@ static void ipa_endpoint_init_aggr(struct ipa_endpoint *endpoint) ...@@ -576,17 +576,20 @@ static void ipa_endpoint_init_aggr(struct ipa_endpoint *endpoint)
if (endpoint->data->aggregation) { if (endpoint->data->aggregation) {
if (!endpoint->toward_ipa) { if (!endpoint->toward_ipa) {
u32 aggr_size = ipa_aggr_size_kb(IPA_RX_BUFFER_SIZE);
u32 limit; u32 limit;
val |= u32_encode_bits(IPA_ENABLE_AGGR, AGGR_EN_FMASK); val |= u32_encode_bits(IPA_ENABLE_AGGR, AGGR_EN_FMASK);
val |= u32_encode_bits(IPA_GENERIC, AGGR_TYPE_FMASK); val |= u32_encode_bits(IPA_GENERIC, AGGR_TYPE_FMASK);
val |= u32_encode_bits(aggr_size,
AGGR_BYTE_LIMIT_FMASK); limit = ipa_aggr_size_kb(IPA_RX_BUFFER_SIZE);
val |= u32_encode_bits(limit, AGGR_BYTE_LIMIT_FMASK);
limit = IPA_AGGR_TIME_LIMIT_DEFAULT; limit = IPA_AGGR_TIME_LIMIT_DEFAULT;
val |= u32_encode_bits(limit / IPA_AGGR_GRANULARITY, limit = DIV_ROUND_CLOSEST(limit, IPA_AGGR_GRANULARITY);
AGGR_TIME_LIMIT_FMASK); val |= u32_encode_bits(limit, AGGR_TIME_LIMIT_FMASK);
val |= u32_encode_bits(0, AGGR_PKT_LIMIT_FMASK);
/* AGGR_PKT_LIMIT is 0 (unlimited) */
if (endpoint->data->rx.aggr_close_eof) if (endpoint->data->rx.aggr_close_eof)
val |= AGGR_SW_EOF_ACTIVE_FMASK; val |= AGGR_SW_EOF_ACTIVE_FMASK;
/* AGGR_HARD_BYTE_LIMIT_ENABLE is 0 */ /* AGGR_HARD_BYTE_LIMIT_ENABLE is 0 */
......
...@@ -674,6 +674,11 @@ static void ipa_validate_build(void) ...@@ -674,6 +674,11 @@ static void ipa_validate_build(void)
/* This is used as a divisor */ /* This is used as a divisor */
BUILD_BUG_ON(!IPA_AGGR_GRANULARITY); BUILD_BUG_ON(!IPA_AGGR_GRANULARITY);
/* Aggregation granularity value can't be 0, and must fit */
BUILD_BUG_ON(!ipa_aggr_granularity_val(IPA_AGGR_GRANULARITY));
BUILD_BUG_ON(ipa_aggr_granularity_val(IPA_AGGR_GRANULARITY) >
field_max(AGGR_GRANULARITY));
#endif /* IPA_VALIDATE */ #endif /* IPA_VALIDATE */
} }
......
...@@ -190,24 +190,23 @@ static inline u32 ipa_reg_bcr_val(enum ipa_version version) ...@@ -190,24 +190,23 @@ static inline u32 ipa_reg_bcr_val(enum ipa_version version)
return 0x00000000; return 0x00000000;
} }
#define IPA_REG_LOCAL_PKT_PROC_CNTXT_BASE_OFFSET 0x000001e8 #define IPA_REG_LOCAL_PKT_PROC_CNTXT_BASE_OFFSET 0x000001e8
#define IPA_REG_AGGR_FORCE_CLOSE_OFFSET 0x000001ec #define IPA_REG_AGGR_FORCE_CLOSE_OFFSET 0x000001ec
/* ipa->available defines the valid bits in the AGGR_FORCE_CLOSE register */ /* ipa->available defines the valid bits in the AGGR_FORCE_CLOSE register */
/* The internal inactivity timer clock is used for the aggregation timer */
#define TIMER_FREQUENCY 32000 /* 32 KHz inactivity timer clock */
#define IPA_REG_COUNTER_CFG_OFFSET 0x000001f0 #define IPA_REG_COUNTER_CFG_OFFSET 0x000001f0
#define AGGR_GRANULARITY GENMASK(8, 4) #define AGGR_GRANULARITY GENMASK(8, 4)
/* Compute the value to use in the AGGR_GRANULARITY field representing /* Compute the value to use in the AGGR_GRANULARITY field representing the
* the given number of microseconds (up to 1 millisecond). * given number of microseconds. The value is one less than the number of
* x = (32 * usec) / 1000 - 1 * timer ticks in the requested period. Zero not a valid granularity value.
*/ */
static inline u32 ipa_aggr_granularity_val(u32 microseconds) static inline u32 ipa_aggr_granularity_val(u32 usec)
{ {
/* assert(microseconds >= 16); (?) */ return DIV_ROUND_CLOSEST(usec * TIMER_FREQUENCY, USEC_PER_SEC) - 1;
/* assert(microseconds <= 1015); */
return DIV_ROUND_CLOSEST(32 * microseconds, 1000) - 1;
} }
#define IPA_REG_TX_CFG_OFFSET 0x000001fc #define IPA_REG_TX_CFG_OFFSET 0x000001fc
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment