Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts: drivers/net/ethernet/mellanox/mlx5/core/en.h drivers/net/ethernet/mellanox/mlx5/core/en_main.c drivers/net/usb/r8152.c All three conflicts were overlapping changes. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
30d0844bdc
154 changed files with 1455 additions and 618 deletions
2
Makefile
2
Makefile
|
@ -1,7 +1,7 @@
|
||||||
VERSION = 4
|
VERSION = 4
|
||||||
PATCHLEVEL = 7
|
PATCHLEVEL = 7
|
||||||
SUBLEVEL = 0
|
SUBLEVEL = 0
|
||||||
EXTRAVERSION = -rc5
|
EXTRAVERSION = -rc6
|
||||||
NAME = Psychotic Stoned Sheep
|
NAME = Psychotic Stoned Sheep
|
||||||
|
|
||||||
# *DOCUMENTATION*
|
# *DOCUMENTATION*
|
||||||
|
|
|
@ -66,8 +66,6 @@ endif
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
cflags-$(CONFIG_ARC_DW2_UNWIND) += -fasynchronous-unwind-tables
|
|
||||||
|
|
||||||
# By default gcc 4.8 generates dwarf4 which kernel unwinder can't grok
|
# By default gcc 4.8 generates dwarf4 which kernel unwinder can't grok
|
||||||
ifeq ($(atleast_gcc48),y)
|
ifeq ($(atleast_gcc48),y)
|
||||||
cflags-$(CONFIG_ARC_DW2_UNWIND) += -gdwarf-2
|
cflags-$(CONFIG_ARC_DW2_UNWIND) += -gdwarf-2
|
||||||
|
|
|
@ -142,7 +142,7 @@ arc_unwind_core(struct task_struct *tsk, struct pt_regs *regs,
|
||||||
* prelogue is setup (callee regs saved and then fp set and not other
|
* prelogue is setup (callee regs saved and then fp set and not other
|
||||||
* way around
|
* way around
|
||||||
*/
|
*/
|
||||||
pr_warn("CONFIG_ARC_DW2_UNWIND needs to be enabled\n");
|
pr_warn_once("CONFIG_ARC_DW2_UNWIND needs to be enabled\n");
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -263,6 +263,7 @@ void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
|
||||||
kvm_timer_vcpu_terminate(vcpu);
|
kvm_timer_vcpu_terminate(vcpu);
|
||||||
kvm_vgic_vcpu_destroy(vcpu);
|
kvm_vgic_vcpu_destroy(vcpu);
|
||||||
kvm_pmu_vcpu_destroy(vcpu);
|
kvm_pmu_vcpu_destroy(vcpu);
|
||||||
|
kvm_vcpu_uninit(vcpu);
|
||||||
kmem_cache_free(kvm_vcpu_cache, vcpu);
|
kmem_cache_free(kvm_vcpu_cache, vcpu);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ struct mm_struct;
|
||||||
struct vm_area_struct;
|
struct vm_area_struct;
|
||||||
|
|
||||||
#define PAGE_NONE __pgprot(_PAGE_PRESENT | _PAGE_NO_READ | \
|
#define PAGE_NONE __pgprot(_PAGE_PRESENT | _PAGE_NO_READ | \
|
||||||
_CACHE_CACHABLE_NONCOHERENT)
|
_page_cachable_default)
|
||||||
#define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_WRITE | \
|
#define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_WRITE | \
|
||||||
_page_cachable_default)
|
_page_cachable_default)
|
||||||
#define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_NO_EXEC | \
|
#define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_NO_EXEC | \
|
||||||
|
@ -476,7 +476,7 @@ static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
|
||||||
pte.pte_low &= (_PAGE_MODIFIED | _PAGE_ACCESSED | _PFNX_MASK);
|
pte.pte_low &= (_PAGE_MODIFIED | _PAGE_ACCESSED | _PFNX_MASK);
|
||||||
pte.pte_high &= (_PFN_MASK | _CACHE_MASK);
|
pte.pte_high &= (_PFN_MASK | _CACHE_MASK);
|
||||||
pte.pte_low |= pgprot_val(newprot) & ~_PFNX_MASK;
|
pte.pte_low |= pgprot_val(newprot) & ~_PFNX_MASK;
|
||||||
pte.pte_high |= pgprot_val(newprot) & ~_PFN_MASK;
|
pte.pte_high |= pgprot_val(newprot) & ~(_PFN_MASK | _CACHE_MASK);
|
||||||
return pte;
|
return pte;
|
||||||
}
|
}
|
||||||
#elif defined(CONFIG_PHYS_ADDR_T_64BIT) && defined(CONFIG_CPU_MIPS32)
|
#elif defined(CONFIG_PHYS_ADDR_T_64BIT) && defined(CONFIG_CPU_MIPS32)
|
||||||
|
@ -491,7 +491,8 @@ static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
|
||||||
#else
|
#else
|
||||||
static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
|
static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
|
||||||
{
|
{
|
||||||
return __pte((pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot));
|
return __pte((pte_val(pte) & _PAGE_CHG_MASK) |
|
||||||
|
(pgprot_val(newprot) & ~_PAGE_CHG_MASK));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -632,7 +633,8 @@ static inline struct page *pmd_page(pmd_t pmd)
|
||||||
|
|
||||||
static inline pmd_t pmd_modify(pmd_t pmd, pgprot_t newprot)
|
static inline pmd_t pmd_modify(pmd_t pmd, pgprot_t newprot)
|
||||||
{
|
{
|
||||||
pmd_val(pmd) = (pmd_val(pmd) & _PAGE_CHG_MASK) | pgprot_val(newprot);
|
pmd_val(pmd) = (pmd_val(pmd) & _PAGE_CHG_MASK) |
|
||||||
|
(pgprot_val(newprot) & ~_PAGE_CHG_MASK);
|
||||||
return pmd;
|
return pmd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -230,6 +230,7 @@ extern unsigned long __kernel_virt_size;
|
||||||
#define KERN_VIRT_SIZE __kernel_virt_size
|
#define KERN_VIRT_SIZE __kernel_virt_size
|
||||||
extern struct page *vmemmap;
|
extern struct page *vmemmap;
|
||||||
extern unsigned long ioremap_bot;
|
extern unsigned long ioremap_bot;
|
||||||
|
extern unsigned long pci_io_base;
|
||||||
#endif /* __ASSEMBLY__ */
|
#endif /* __ASSEMBLY__ */
|
||||||
|
|
||||||
#include <asm/book3s/64/hash.h>
|
#include <asm/book3s/64/hash.h>
|
||||||
|
|
|
@ -647,7 +647,7 @@ static int eeh_reset_device(struct eeh_pe *pe, struct pci_bus *bus,
|
||||||
pci_unlock_rescan_remove();
|
pci_unlock_rescan_remove();
|
||||||
}
|
}
|
||||||
} else if (frozen_bus) {
|
} else if (frozen_bus) {
|
||||||
eeh_pe_dev_traverse(pe, eeh_rmv_device, &rmv_data);
|
eeh_pe_dev_traverse(pe, eeh_rmv_device, rmv_data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -47,7 +47,6 @@ static int __init pcibios_init(void)
|
||||||
|
|
||||||
printk(KERN_INFO "PCI: Probing PCI hardware\n");
|
printk(KERN_INFO "PCI: Probing PCI hardware\n");
|
||||||
|
|
||||||
pci_io_base = ISA_IO_BASE;
|
|
||||||
/* For now, override phys_mem_access_prot. If we need it,g
|
/* For now, override phys_mem_access_prot. If we need it,g
|
||||||
* later, we may move that initialization to each ppc_md
|
* later, we may move that initialization to each ppc_md
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1505,6 +1505,16 @@ void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
|
||||||
current->thread.regs = regs - 1;
|
current->thread.regs = regs - 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
|
||||||
|
/*
|
||||||
|
* Clear any transactional state, we're exec()ing. The cause is
|
||||||
|
* not important as there will never be a recheckpoint so it's not
|
||||||
|
* user visible.
|
||||||
|
*/
|
||||||
|
if (MSR_TM_SUSPENDED(mfmsr()))
|
||||||
|
tm_reclaim_current(0);
|
||||||
|
#endif
|
||||||
|
|
||||||
memset(regs->gpr, 0, sizeof(regs->gpr));
|
memset(regs->gpr, 0, sizeof(regs->gpr));
|
||||||
regs->ctr = 0;
|
regs->ctr = 0;
|
||||||
regs->link = 0;
|
regs->link = 0;
|
||||||
|
|
|
@ -110,17 +110,11 @@ _GLOBAL(tm_reclaim)
|
||||||
std r3, STK_PARAM(R3)(r1)
|
std r3, STK_PARAM(R3)(r1)
|
||||||
SAVE_NVGPRS(r1)
|
SAVE_NVGPRS(r1)
|
||||||
|
|
||||||
/* We need to setup MSR for VSX register save instructions. Here we
|
/* We need to setup MSR for VSX register save instructions. */
|
||||||
* also clear the MSR RI since when we do the treclaim, we won't have a
|
|
||||||
* valid kernel pointer for a while. We clear RI here as it avoids
|
|
||||||
* adding another mtmsr closer to the treclaim. This makes the region
|
|
||||||
* maked as non-recoverable wider than it needs to be but it saves on
|
|
||||||
* inserting another mtmsrd later.
|
|
||||||
*/
|
|
||||||
mfmsr r14
|
mfmsr r14
|
||||||
mr r15, r14
|
mr r15, r14
|
||||||
ori r15, r15, MSR_FP
|
ori r15, r15, MSR_FP
|
||||||
li r16, MSR_RI
|
li r16, 0
|
||||||
ori r16, r16, MSR_EE /* IRQs hard off */
|
ori r16, r16, MSR_EE /* IRQs hard off */
|
||||||
andc r15, r15, r16
|
andc r15, r15, r16
|
||||||
oris r15, r15, MSR_VEC@h
|
oris r15, r15, MSR_VEC@h
|
||||||
|
@ -176,7 +170,17 @@ dont_backup_fp:
|
||||||
1: tdeqi r6, 0
|
1: tdeqi r6, 0
|
||||||
EMIT_BUG_ENTRY 1b,__FILE__,__LINE__,0
|
EMIT_BUG_ENTRY 1b,__FILE__,__LINE__,0
|
||||||
|
|
||||||
/* The moment we treclaim, ALL of our GPRs will switch
|
/* Clear MSR RI since we are about to change r1, EE is already off. */
|
||||||
|
li r4, 0
|
||||||
|
mtmsrd r4, 1
|
||||||
|
|
||||||
|
/*
|
||||||
|
* BE CAREFUL HERE:
|
||||||
|
* At this point we can't take an SLB miss since we have MSR_RI
|
||||||
|
* off. Load only to/from the stack/paca which are in SLB bolted regions
|
||||||
|
* until we turn MSR RI back on.
|
||||||
|
*
|
||||||
|
* The moment we treclaim, ALL of our GPRs will switch
|
||||||
* to user register state. (FPRs, CCR etc. also!)
|
* to user register state. (FPRs, CCR etc. also!)
|
||||||
* Use an sprg and a tm_scratch in the PACA to shuffle.
|
* Use an sprg and a tm_scratch in the PACA to shuffle.
|
||||||
*/
|
*/
|
||||||
|
@ -197,6 +201,11 @@ dont_backup_fp:
|
||||||
|
|
||||||
/* Store the PPR in r11 and reset to decent value */
|
/* Store the PPR in r11 and reset to decent value */
|
||||||
std r11, GPR11(r1) /* Temporary stash */
|
std r11, GPR11(r1) /* Temporary stash */
|
||||||
|
|
||||||
|
/* Reset MSR RI so we can take SLB faults again */
|
||||||
|
li r11, MSR_RI
|
||||||
|
mtmsrd r11, 1
|
||||||
|
|
||||||
mfspr r11, SPRN_PPR
|
mfspr r11, SPRN_PPR
|
||||||
HMT_MEDIUM
|
HMT_MEDIUM
|
||||||
|
|
||||||
|
@ -397,11 +406,6 @@ restore_gprs:
|
||||||
ld r5, THREAD_TM_DSCR(r3)
|
ld r5, THREAD_TM_DSCR(r3)
|
||||||
ld r6, THREAD_TM_PPR(r3)
|
ld r6, THREAD_TM_PPR(r3)
|
||||||
|
|
||||||
/* Clear the MSR RI since we are about to change R1. EE is already off
|
|
||||||
*/
|
|
||||||
li r4, 0
|
|
||||||
mtmsrd r4, 1
|
|
||||||
|
|
||||||
REST_GPR(0, r7) /* GPR0 */
|
REST_GPR(0, r7) /* GPR0 */
|
||||||
REST_2GPRS(2, r7) /* GPR2-3 */
|
REST_2GPRS(2, r7) /* GPR2-3 */
|
||||||
REST_GPR(4, r7) /* GPR4 */
|
REST_GPR(4, r7) /* GPR4 */
|
||||||
|
@ -439,10 +443,33 @@ restore_gprs:
|
||||||
ld r6, _CCR(r7)
|
ld r6, _CCR(r7)
|
||||||
mtcr r6
|
mtcr r6
|
||||||
|
|
||||||
REST_GPR(1, r7) /* GPR1 */
|
|
||||||
REST_GPR(5, r7) /* GPR5-7 */
|
|
||||||
REST_GPR(6, r7)
|
REST_GPR(6, r7)
|
||||||
ld r7, GPR7(r7)
|
|
||||||
|
/*
|
||||||
|
* Store r1 and r5 on the stack so that we can access them
|
||||||
|
* after we clear MSR RI.
|
||||||
|
*/
|
||||||
|
|
||||||
|
REST_GPR(5, r7)
|
||||||
|
std r5, -8(r1)
|
||||||
|
ld r5, GPR1(r7)
|
||||||
|
std r5, -16(r1)
|
||||||
|
|
||||||
|
REST_GPR(7, r7)
|
||||||
|
|
||||||
|
/* Clear MSR RI since we are about to change r1. EE is already off */
|
||||||
|
li r5, 0
|
||||||
|
mtmsrd r5, 1
|
||||||
|
|
||||||
|
/*
|
||||||
|
* BE CAREFUL HERE:
|
||||||
|
* At this point we can't take an SLB miss since we have MSR_RI
|
||||||
|
* off. Load only to/from the stack/paca which are in SLB bolted regions
|
||||||
|
* until we turn MSR RI back on.
|
||||||
|
*/
|
||||||
|
|
||||||
|
ld r5, -8(r1)
|
||||||
|
ld r1, -16(r1)
|
||||||
|
|
||||||
/* Commit register state as checkpointed state: */
|
/* Commit register state as checkpointed state: */
|
||||||
TRECHKPT
|
TRECHKPT
|
||||||
|
|
|
@ -922,6 +922,10 @@ void __init hash__early_init_mmu(void)
|
||||||
vmemmap = (struct page *)H_VMEMMAP_BASE;
|
vmemmap = (struct page *)H_VMEMMAP_BASE;
|
||||||
ioremap_bot = IOREMAP_BASE;
|
ioremap_bot = IOREMAP_BASE;
|
||||||
|
|
||||||
|
#ifdef CONFIG_PCI
|
||||||
|
pci_io_base = ISA_IO_BASE;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Initialize the MMU Hash table and create the linear mapping
|
/* Initialize the MMU Hash table and create the linear mapping
|
||||||
* of memory. Has to be done before SLB initialization as this is
|
* of memory. Has to be done before SLB initialization as this is
|
||||||
* currently where the page size encoding is obtained.
|
* currently where the page size encoding is obtained.
|
||||||
|
|
|
@ -328,6 +328,11 @@ void __init radix__early_init_mmu(void)
|
||||||
__vmalloc_end = RADIX_VMALLOC_END;
|
__vmalloc_end = RADIX_VMALLOC_END;
|
||||||
vmemmap = (struct page *)RADIX_VMEMMAP_BASE;
|
vmemmap = (struct page *)RADIX_VMEMMAP_BASE;
|
||||||
ioremap_bot = IOREMAP_BASE;
|
ioremap_bot = IOREMAP_BASE;
|
||||||
|
|
||||||
|
#ifdef CONFIG_PCI
|
||||||
|
pci_io_base = ISA_IO_BASE;
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* For now radix also use the same frag size
|
* For now radix also use the same frag size
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -68,30 +68,23 @@ static inline u64 pvclock_scale_delta(u64 delta, u32 mul_frac, int shift)
|
||||||
return product;
|
return product;
|
||||||
}
|
}
|
||||||
|
|
||||||
static __always_inline
|
|
||||||
u64 pvclock_get_nsec_offset(const struct pvclock_vcpu_time_info *src)
|
|
||||||
{
|
|
||||||
u64 delta = rdtsc_ordered() - src->tsc_timestamp;
|
|
||||||
return pvclock_scale_delta(delta, src->tsc_to_system_mul,
|
|
||||||
src->tsc_shift);
|
|
||||||
}
|
|
||||||
|
|
||||||
static __always_inline
|
static __always_inline
|
||||||
unsigned __pvclock_read_cycles(const struct pvclock_vcpu_time_info *src,
|
unsigned __pvclock_read_cycles(const struct pvclock_vcpu_time_info *src,
|
||||||
cycle_t *cycles, u8 *flags)
|
cycle_t *cycles, u8 *flags)
|
||||||
{
|
{
|
||||||
unsigned version;
|
unsigned version;
|
||||||
cycle_t ret, offset;
|
cycle_t offset;
|
||||||
u8 ret_flags;
|
u64 delta;
|
||||||
|
|
||||||
version = src->version;
|
version = src->version;
|
||||||
|
/* Make the latest version visible */
|
||||||
|
smp_rmb();
|
||||||
|
|
||||||
offset = pvclock_get_nsec_offset(src);
|
delta = rdtsc_ordered() - src->tsc_timestamp;
|
||||||
ret = src->system_time + offset;
|
offset = pvclock_scale_delta(delta, src->tsc_to_system_mul,
|
||||||
ret_flags = src->flags;
|
src->tsc_shift);
|
||||||
|
*cycles = src->system_time + offset;
|
||||||
*cycles = ret;
|
*flags = src->flags;
|
||||||
*flags = ret_flags;
|
|
||||||
return version;
|
return version;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -61,11 +61,16 @@ void pvclock_resume(void)
|
||||||
u8 pvclock_read_flags(struct pvclock_vcpu_time_info *src)
|
u8 pvclock_read_flags(struct pvclock_vcpu_time_info *src)
|
||||||
{
|
{
|
||||||
unsigned version;
|
unsigned version;
|
||||||
cycle_t ret;
|
|
||||||
u8 flags;
|
u8 flags;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
version = __pvclock_read_cycles(src, &ret, &flags);
|
version = src->version;
|
||||||
|
/* Make the latest version visible */
|
||||||
|
smp_rmb();
|
||||||
|
|
||||||
|
flags = src->flags;
|
||||||
|
/* Make sure that the version double-check is last. */
|
||||||
|
smp_rmb();
|
||||||
} while ((src->version & 1) || version != src->version);
|
} while ((src->version & 1) || version != src->version);
|
||||||
|
|
||||||
return flags & valid_flags;
|
return flags & valid_flags;
|
||||||
|
@ -80,6 +85,8 @@ cycle_t pvclock_clocksource_read(struct pvclock_vcpu_time_info *src)
|
||||||
|
|
||||||
do {
|
do {
|
||||||
version = __pvclock_read_cycles(src, &ret, &flags);
|
version = __pvclock_read_cycles(src, &ret, &flags);
|
||||||
|
/* Make sure that the version double-check is last. */
|
||||||
|
smp_rmb();
|
||||||
} while ((src->version & 1) || version != src->version);
|
} while ((src->version & 1) || version != src->version);
|
||||||
|
|
||||||
if (unlikely((flags & PVCLOCK_GUEST_STOPPED) != 0)) {
|
if (unlikely((flags & PVCLOCK_GUEST_STOPPED) != 0)) {
|
||||||
|
|
|
@ -1310,7 +1310,8 @@ void wait_lapic_expire(struct kvm_vcpu *vcpu)
|
||||||
|
|
||||||
/* __delay is delay_tsc whenever the hardware has TSC, thus always. */
|
/* __delay is delay_tsc whenever the hardware has TSC, thus always. */
|
||||||
if (guest_tsc < tsc_deadline)
|
if (guest_tsc < tsc_deadline)
|
||||||
__delay(tsc_deadline - guest_tsc);
|
__delay(min(tsc_deadline - guest_tsc,
|
||||||
|
nsec_to_cycles(vcpu, lapic_timer_advance_ns)));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void start_apic_timer(struct kvm_lapic *apic)
|
static void start_apic_timer(struct kvm_lapic *apic)
|
||||||
|
|
|
@ -6671,7 +6671,13 @@ static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
|
||||||
|
|
||||||
/* Checks for #GP/#SS exceptions. */
|
/* Checks for #GP/#SS exceptions. */
|
||||||
exn = false;
|
exn = false;
|
||||||
if (is_protmode(vcpu)) {
|
if (is_long_mode(vcpu)) {
|
||||||
|
/* Long mode: #GP(0)/#SS(0) if the memory address is in a
|
||||||
|
* non-canonical form. This is the only check on the memory
|
||||||
|
* destination for long mode!
|
||||||
|
*/
|
||||||
|
exn = is_noncanonical_address(*ret);
|
||||||
|
} else if (is_protmode(vcpu)) {
|
||||||
/* Protected mode: apply checks for segment validity in the
|
/* Protected mode: apply checks for segment validity in the
|
||||||
* following order:
|
* following order:
|
||||||
* - segment type check (#GP(0) may be thrown)
|
* - segment type check (#GP(0) may be thrown)
|
||||||
|
@ -6688,17 +6694,10 @@ static int get_vmx_mem_address(struct kvm_vcpu *vcpu,
|
||||||
* execute-only code segment
|
* execute-only code segment
|
||||||
*/
|
*/
|
||||||
exn = ((s.type & 0xa) == 8);
|
exn = ((s.type & 0xa) == 8);
|
||||||
}
|
if (exn) {
|
||||||
if (exn) {
|
kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
|
||||||
kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
|
return 1;
|
||||||
return 1;
|
}
|
||||||
}
|
|
||||||
if (is_long_mode(vcpu)) {
|
|
||||||
/* Long mode: #GP(0)/#SS(0) if the memory address is in a
|
|
||||||
* non-canonical form. This is an only check for long mode.
|
|
||||||
*/
|
|
||||||
exn = is_noncanonical_address(*ret);
|
|
||||||
} else if (is_protmode(vcpu)) {
|
|
||||||
/* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
|
/* Protected mode: #GP(0)/#SS(0) if the segment is unusable.
|
||||||
*/
|
*/
|
||||||
exn = (s.unusable != 0);
|
exn = (s.unusable != 0);
|
||||||
|
|
|
@ -1244,12 +1244,6 @@ static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0);
|
||||||
static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
|
static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
|
||||||
static unsigned long max_tsc_khz;
|
static unsigned long max_tsc_khz;
|
||||||
|
|
||||||
static inline u64 nsec_to_cycles(struct kvm_vcpu *vcpu, u64 nsec)
|
|
||||||
{
|
|
||||||
return pvclock_scale_delta(nsec, vcpu->arch.virtual_tsc_mult,
|
|
||||||
vcpu->arch.virtual_tsc_shift);
|
|
||||||
}
|
|
||||||
|
|
||||||
static u32 adjust_tsc_khz(u32 khz, s32 ppm)
|
static u32 adjust_tsc_khz(u32 khz, s32 ppm)
|
||||||
{
|
{
|
||||||
u64 v = (u64)khz * (1000000 + ppm);
|
u64 v = (u64)khz * (1000000 + ppm);
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
#define ARCH_X86_KVM_X86_H
|
#define ARCH_X86_KVM_X86_H
|
||||||
|
|
||||||
#include <linux/kvm_host.h>
|
#include <linux/kvm_host.h>
|
||||||
|
#include <asm/pvclock.h>
|
||||||
#include "kvm_cache_regs.h"
|
#include "kvm_cache_regs.h"
|
||||||
|
|
||||||
#define MSR_IA32_CR_PAT_DEFAULT 0x0007040600070406ULL
|
#define MSR_IA32_CR_PAT_DEFAULT 0x0007040600070406ULL
|
||||||
|
@ -195,6 +196,12 @@ extern unsigned int lapic_timer_advance_ns;
|
||||||
|
|
||||||
extern struct static_key kvm_no_apic_vcpu;
|
extern struct static_key kvm_no_apic_vcpu;
|
||||||
|
|
||||||
|
static inline u64 nsec_to_cycles(struct kvm_vcpu *vcpu, u64 nsec)
|
||||||
|
{
|
||||||
|
return pvclock_scale_delta(nsec, vcpu->arch.virtual_tsc_mult,
|
||||||
|
vcpu->arch.virtual_tsc_shift);
|
||||||
|
}
|
||||||
|
|
||||||
/* Same "calling convention" as do_div:
|
/* Same "calling convention" as do_div:
|
||||||
* - divide (n << 32) by base
|
* - divide (n << 32) by base
|
||||||
* - put result in n
|
* - put result in n
|
||||||
|
|
|
@ -928,7 +928,7 @@ static ssize_t format_show(struct device *dev,
|
||||||
{
|
{
|
||||||
struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
|
struct acpi_nfit_control_region *dcr = to_nfit_dcr(dev);
|
||||||
|
|
||||||
return sprintf(buf, "0x%04x\n", be16_to_cpu(dcr->code));
|
return sprintf(buf, "0x%04x\n", le16_to_cpu(dcr->code));
|
||||||
}
|
}
|
||||||
static DEVICE_ATTR_RO(format);
|
static DEVICE_ATTR_RO(format);
|
||||||
|
|
||||||
|
@ -961,8 +961,8 @@ static ssize_t format1_show(struct device *dev,
|
||||||
continue;
|
continue;
|
||||||
if (nfit_dcr->dcr->code == dcr->code)
|
if (nfit_dcr->dcr->code == dcr->code)
|
||||||
continue;
|
continue;
|
||||||
rc = sprintf(buf, "%#x\n",
|
rc = sprintf(buf, "0x%04x\n",
|
||||||
be16_to_cpu(nfit_dcr->dcr->code));
|
le16_to_cpu(nfit_dcr->dcr->code));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (rc != ENXIO)
|
if (rc != ENXIO)
|
||||||
|
@ -1131,11 +1131,11 @@ static int acpi_nfit_add_dimm(struct acpi_nfit_desc *acpi_desc,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Until standardization materializes we need to consider up to 3
|
* Until standardization materializes we need to consider up to 3
|
||||||
* different command sets. Note, that checking for function0 (bit0)
|
* different command sets. Note, that checking for zero functions
|
||||||
* tells us if any commands are reachable through this uuid.
|
* tells us if any commands might be reachable through this uuid.
|
||||||
*/
|
*/
|
||||||
for (i = NVDIMM_FAMILY_INTEL; i <= NVDIMM_FAMILY_HPE2; i++)
|
for (i = NVDIMM_FAMILY_INTEL; i <= NVDIMM_FAMILY_HPE2; i++)
|
||||||
if (acpi_check_dsm(adev_dimm->handle, to_nfit_uuid(i), 1, 1))
|
if (acpi_check_dsm(adev_dimm->handle, to_nfit_uuid(i), 1, 0))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* limit the supported commands to those that are publicly documented */
|
/* limit the supported commands to those that are publicly documented */
|
||||||
|
|
|
@ -53,12 +53,12 @@ enum nfit_uuids {
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Region format interface codes are stored as an array of bytes in the
|
* Region format interface codes are stored with the interface as the
|
||||||
* NFIT DIMM Control Region structure
|
* LSB and the function as the MSB.
|
||||||
*/
|
*/
|
||||||
#define NFIT_FIC_BYTE cpu_to_be16(0x101) /* byte-addressable energy backed */
|
#define NFIT_FIC_BYTE cpu_to_le16(0x101) /* byte-addressable energy backed */
|
||||||
#define NFIT_FIC_BLK cpu_to_be16(0x201) /* block-addressable non-energy backed */
|
#define NFIT_FIC_BLK cpu_to_le16(0x201) /* block-addressable non-energy backed */
|
||||||
#define NFIT_FIC_BYTEN cpu_to_be16(0x301) /* byte-addressable non-energy backed */
|
#define NFIT_FIC_BYTEN cpu_to_le16(0x301) /* byte-addressable non-energy backed */
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
NFIT_BLK_READ_FLUSH = 1,
|
NFIT_BLK_READ_FLUSH = 1,
|
||||||
|
|
|
@ -839,7 +839,7 @@ void acpi_penalize_isa_irq(int irq, int active)
|
||||||
{
|
{
|
||||||
if ((irq >= 0) && (irq < ARRAY_SIZE(acpi_isa_irq_penalty)))
|
if ((irq >= 0) && (irq < ARRAY_SIZE(acpi_isa_irq_penalty)))
|
||||||
acpi_isa_irq_penalty[irq] = acpi_irq_get_penalty(irq) +
|
acpi_isa_irq_penalty[irq] = acpi_irq_get_penalty(irq) +
|
||||||
active ? PIRQ_PENALTY_ISA_USED : PIRQ_PENALTY_PCI_USING;
|
(active ? PIRQ_PENALTY_ISA_USED : PIRQ_PENALTY_PCI_USING);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool acpi_isa_irq_available(int irq)
|
bool acpi_isa_irq_available(int irq)
|
||||||
|
|
|
@ -680,9 +680,6 @@ bool acpi_check_dsm(acpi_handle handle, const u8 *uuid, u64 rev, u64 funcs)
|
||||||
u64 mask = 0;
|
u64 mask = 0;
|
||||||
union acpi_object *obj;
|
union acpi_object *obj;
|
||||||
|
|
||||||
if (funcs == 0)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
obj = acpi_evaluate_dsm(handle, uuid, rev, 0, NULL);
|
obj = acpi_evaluate_dsm(handle, uuid, rev, 0, NULL);
|
||||||
if (!obj)
|
if (!obj)
|
||||||
return false;
|
return false;
|
||||||
|
@ -695,6 +692,9 @@ bool acpi_check_dsm(acpi_handle handle, const u8 *uuid, u64 rev, u64 funcs)
|
||||||
mask |= (((u64)obj->buffer.pointer[i]) << (i * 8));
|
mask |= (((u64)obj->buffer.pointer[i]) << (i * 8));
|
||||||
ACPI_FREE(obj);
|
ACPI_FREE(obj);
|
||||||
|
|
||||||
|
if (funcs == 0)
|
||||||
|
return true;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Bit 0 indicates whether there's support for any functions other than
|
* Bit 0 indicates whether there's support for any functions other than
|
||||||
* function 0 for the specified UUID and revision.
|
* function 0 for the specified UUID and revision.
|
||||||
|
|
|
@ -144,9 +144,9 @@ static int oxnas_stdclk_probe(struct platform_device *pdev)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
regmap = syscon_node_to_regmap(of_get_parent(np));
|
regmap = syscon_node_to_regmap(of_get_parent(np));
|
||||||
if (!regmap) {
|
if (IS_ERR(regmap)) {
|
||||||
dev_err(&pdev->dev, "failed to have parent regmap\n");
|
dev_err(&pdev->dev, "failed to have parent regmap\n");
|
||||||
return -EINVAL;
|
return PTR_ERR(regmap);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < ARRAY_SIZE(clk_oxnas_init); i++) {
|
for (i = 0; i < ARRAY_SIZE(clk_oxnas_init); i++) {
|
||||||
|
|
|
@ -321,9 +321,9 @@ struct clk *rockchip_clk_register_cpuclk(const char *name,
|
||||||
}
|
}
|
||||||
|
|
||||||
cclk = clk_register(NULL, &cpuclk->hw);
|
cclk = clk_register(NULL, &cpuclk->hw);
|
||||||
if (IS_ERR(clk)) {
|
if (IS_ERR(cclk)) {
|
||||||
pr_err("%s: could not register cpuclk %s\n", __func__, name);
|
pr_err("%s: could not register cpuclk %s\n", __func__, name);
|
||||||
ret = PTR_ERR(clk);
|
ret = PTR_ERR(cclk);
|
||||||
goto free_rate_table;
|
goto free_rate_table;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -41,8 +41,6 @@ static unsigned long rockchip_mmc_recalc(struct clk_hw *hw,
|
||||||
#define ROCKCHIP_MMC_DEGREE_MASK 0x3
|
#define ROCKCHIP_MMC_DEGREE_MASK 0x3
|
||||||
#define ROCKCHIP_MMC_DELAYNUM_OFFSET 2
|
#define ROCKCHIP_MMC_DELAYNUM_OFFSET 2
|
||||||
#define ROCKCHIP_MMC_DELAYNUM_MASK (0xff << ROCKCHIP_MMC_DELAYNUM_OFFSET)
|
#define ROCKCHIP_MMC_DELAYNUM_MASK (0xff << ROCKCHIP_MMC_DELAYNUM_OFFSET)
|
||||||
#define ROCKCHIP_MMC_INIT_STATE_RESET 0x1
|
|
||||||
#define ROCKCHIP_MMC_INIT_STATE_SHIFT 1
|
|
||||||
|
|
||||||
#define PSECS_PER_SEC 1000000000000LL
|
#define PSECS_PER_SEC 1000000000000LL
|
||||||
|
|
||||||
|
@ -154,6 +152,7 @@ struct clk *rockchip_clk_register_mmc(const char *name,
|
||||||
return ERR_PTR(-ENOMEM);
|
return ERR_PTR(-ENOMEM);
|
||||||
|
|
||||||
init.name = name;
|
init.name = name;
|
||||||
|
init.flags = 0;
|
||||||
init.num_parents = num_parents;
|
init.num_parents = num_parents;
|
||||||
init.parent_names = parent_names;
|
init.parent_names = parent_names;
|
||||||
init.ops = &rockchip_mmc_clk_ops;
|
init.ops = &rockchip_mmc_clk_ops;
|
||||||
|
@ -162,15 +161,6 @@ struct clk *rockchip_clk_register_mmc(const char *name,
|
||||||
mmc_clock->reg = reg;
|
mmc_clock->reg = reg;
|
||||||
mmc_clock->shift = shift;
|
mmc_clock->shift = shift;
|
||||||
|
|
||||||
/*
|
|
||||||
* Assert init_state to soft reset the CLKGEN
|
|
||||||
* for mmc tuning phase and degree
|
|
||||||
*/
|
|
||||||
if (mmc_clock->shift == ROCKCHIP_MMC_INIT_STATE_SHIFT)
|
|
||||||
writel(HIWORD_UPDATE(ROCKCHIP_MMC_INIT_STATE_RESET,
|
|
||||||
ROCKCHIP_MMC_INIT_STATE_RESET,
|
|
||||||
mmc_clock->shift), mmc_clock->reg);
|
|
||||||
|
|
||||||
clk = clk_register(NULL, &mmc_clock->hw);
|
clk = clk_register(NULL, &mmc_clock->hw);
|
||||||
if (IS_ERR(clk))
|
if (IS_ERR(clk))
|
||||||
kfree(mmc_clock);
|
kfree(mmc_clock);
|
||||||
|
|
|
@ -832,9 +832,9 @@ static struct rockchip_clk_branch rk3399_clk_branches[] __initdata = {
|
||||||
RK3399_CLKGATE_CON(13), 1, GFLAGS),
|
RK3399_CLKGATE_CON(13), 1, GFLAGS),
|
||||||
|
|
||||||
/* perihp */
|
/* perihp */
|
||||||
GATE(0, "cpll_aclk_perihp_src", "gpll", CLK_IGNORE_UNUSED,
|
GATE(0, "cpll_aclk_perihp_src", "cpll", CLK_IGNORE_UNUSED,
|
||||||
RK3399_CLKGATE_CON(5), 0, GFLAGS),
|
RK3399_CLKGATE_CON(5), 0, GFLAGS),
|
||||||
GATE(0, "gpll_aclk_perihp_src", "cpll", CLK_IGNORE_UNUSED,
|
GATE(0, "gpll_aclk_perihp_src", "gpll", CLK_IGNORE_UNUSED,
|
||||||
RK3399_CLKGATE_CON(5), 1, GFLAGS),
|
RK3399_CLKGATE_CON(5), 1, GFLAGS),
|
||||||
COMPOSITE(ACLK_PERIHP, "aclk_perihp", mux_aclk_perihp_p, CLK_IGNORE_UNUSED,
|
COMPOSITE(ACLK_PERIHP, "aclk_perihp", mux_aclk_perihp_p, CLK_IGNORE_UNUSED,
|
||||||
RK3399_CLKSEL_CON(14), 7, 1, MFLAGS, 0, 5, DFLAGS,
|
RK3399_CLKSEL_CON(14), 7, 1, MFLAGS, 0, 5, DFLAGS,
|
||||||
|
@ -1466,6 +1466,8 @@ static struct rockchip_clk_branch rk3399_clk_pmu_branches[] __initdata = {
|
||||||
|
|
||||||
static const char *const rk3399_cru_critical_clocks[] __initconst = {
|
static const char *const rk3399_cru_critical_clocks[] __initconst = {
|
||||||
"aclk_cci_pre",
|
"aclk_cci_pre",
|
||||||
|
"aclk_gic",
|
||||||
|
"aclk_gic_noc",
|
||||||
"pclk_perilp0",
|
"pclk_perilp0",
|
||||||
"pclk_perilp0",
|
"pclk_perilp0",
|
||||||
"hclk_perilp0",
|
"hclk_perilp0",
|
||||||
|
@ -1508,6 +1510,7 @@ static void __init rk3399_clk_init(struct device_node *np)
|
||||||
ctx = rockchip_clk_init(np, reg_base, CLK_NR_CLKS);
|
ctx = rockchip_clk_init(np, reg_base, CLK_NR_CLKS);
|
||||||
if (IS_ERR(ctx)) {
|
if (IS_ERR(ctx)) {
|
||||||
pr_err("%s: rockchip clk init failed\n", __func__);
|
pr_err("%s: rockchip clk init failed\n", __func__);
|
||||||
|
iounmap(reg_base);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1553,6 +1556,7 @@ static void __init rk3399_pmu_clk_init(struct device_node *np)
|
||||||
ctx = rockchip_clk_init(np, reg_base, CLKPMU_NR_CLKS);
|
ctx = rockchip_clk_init(np, reg_base, CLKPMU_NR_CLKS);
|
||||||
if (IS_ERR(ctx)) {
|
if (IS_ERR(ctx)) {
|
||||||
pr_err("%s: rockchip pmu clk init failed\n", __func__);
|
pr_err("%s: rockchip pmu clk init failed\n", __func__);
|
||||||
|
iounmap(reg_base);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -79,15 +79,16 @@ static const struct of_device_id machines[] __initconst = {
|
||||||
static int __init cpufreq_dt_platdev_init(void)
|
static int __init cpufreq_dt_platdev_init(void)
|
||||||
{
|
{
|
||||||
struct device_node *np = of_find_node_by_path("/");
|
struct device_node *np = of_find_node_by_path("/");
|
||||||
|
const struct of_device_id *match;
|
||||||
|
|
||||||
if (!np)
|
if (!np)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
if (!of_match_node(machines, np))
|
match = of_match_node(machines, np);
|
||||||
|
of_node_put(np);
|
||||||
|
if (!match)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
of_node_put(of_root);
|
|
||||||
|
|
||||||
return PTR_ERR_OR_ZERO(platform_device_register_simple("cpufreq-dt", -1,
|
return PTR_ERR_OR_ZERO(platform_device_register_simple("cpufreq-dt", -1,
|
||||||
NULL, 0));
|
NULL, 0));
|
||||||
}
|
}
|
||||||
|
|
|
@ -2261,6 +2261,10 @@ int cpufreq_update_policy(unsigned int cpu)
|
||||||
* -> ask driver for current freq and notify governors about a change
|
* -> ask driver for current freq and notify governors about a change
|
||||||
*/
|
*/
|
||||||
if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
|
if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
|
||||||
|
if (cpufreq_suspended) {
|
||||||
|
ret = -EAGAIN;
|
||||||
|
goto unlock;
|
||||||
|
}
|
||||||
new_policy.cur = cpufreq_update_current_freq(policy);
|
new_policy.cur = cpufreq_update_current_freq(policy);
|
||||||
if (WARN_ON(!new_policy.cur)) {
|
if (WARN_ON(!new_policy.cur)) {
|
||||||
ret = -EIO;
|
ret = -EIO;
|
||||||
|
|
|
@ -1400,6 +1400,9 @@ static void intel_pstate_set_update_util_hook(unsigned int cpu_num)
|
||||||
{
|
{
|
||||||
struct cpudata *cpu = all_cpu_data[cpu_num];
|
struct cpudata *cpu = all_cpu_data[cpu_num];
|
||||||
|
|
||||||
|
if (cpu->update_util_set)
|
||||||
|
return;
|
||||||
|
|
||||||
/* Prevent intel_pstate_update_util() from using stale data. */
|
/* Prevent intel_pstate_update_util() from using stale data. */
|
||||||
cpu->sample.time = 0;
|
cpu->sample.time = 0;
|
||||||
cpufreq_add_update_util_hook(cpu_num, &cpu->update_util,
|
cpufreq_add_update_util_hook(cpu_num, &cpu->update_util,
|
||||||
|
@ -1440,8 +1443,6 @@ static int intel_pstate_set_policy(struct cpufreq_policy *policy)
|
||||||
if (!policy->cpuinfo.max_freq)
|
if (!policy->cpuinfo.max_freq)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
intel_pstate_clear_update_util_hook(policy->cpu);
|
|
||||||
|
|
||||||
pr_debug("set_policy cpuinfo.max %u policy->max %u\n",
|
pr_debug("set_policy cpuinfo.max %u policy->max %u\n",
|
||||||
policy->cpuinfo.max_freq, policy->max);
|
policy->cpuinfo.max_freq, policy->max);
|
||||||
|
|
||||||
|
|
|
@ -1106,6 +1106,10 @@ static void amdgpu_uvd_idle_work_handler(struct work_struct *work)
|
||||||
if (fences == 0 && handles == 0) {
|
if (fences == 0 && handles == 0) {
|
||||||
if (adev->pm.dpm_enabled) {
|
if (adev->pm.dpm_enabled) {
|
||||||
amdgpu_dpm_enable_uvd(adev, false);
|
amdgpu_dpm_enable_uvd(adev, false);
|
||||||
|
/* just work around for uvd clock remain high even
|
||||||
|
* when uvd dpm disabled on Polaris10 */
|
||||||
|
if (adev->asic_type == CHIP_POLARIS10)
|
||||||
|
amdgpu_asic_set_uvd_clocks(adev, 0, 0);
|
||||||
} else {
|
} else {
|
||||||
amdgpu_asic_set_uvd_clocks(adev, 0, 0);
|
amdgpu_asic_set_uvd_clocks(adev, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,6 +47,8 @@
|
||||||
#include "dce/dce_10_0_d.h"
|
#include "dce/dce_10_0_d.h"
|
||||||
#include "dce/dce_10_0_sh_mask.h"
|
#include "dce/dce_10_0_sh_mask.h"
|
||||||
|
|
||||||
|
#include "smu/smu_7_1_3_d.h"
|
||||||
|
|
||||||
#define GFX8_NUM_GFX_RINGS 1
|
#define GFX8_NUM_GFX_RINGS 1
|
||||||
#define GFX8_NUM_COMPUTE_RINGS 8
|
#define GFX8_NUM_COMPUTE_RINGS 8
|
||||||
|
|
||||||
|
@ -693,6 +695,7 @@ static void gfx_v8_0_init_golden_registers(struct amdgpu_device *adev)
|
||||||
amdgpu_program_register_sequence(adev,
|
amdgpu_program_register_sequence(adev,
|
||||||
polaris10_golden_common_all,
|
polaris10_golden_common_all,
|
||||||
(const u32)ARRAY_SIZE(polaris10_golden_common_all));
|
(const u32)ARRAY_SIZE(polaris10_golden_common_all));
|
||||||
|
WREG32_SMC(ixCG_ACLK_CNTL, 0x0000001C);
|
||||||
break;
|
break;
|
||||||
case CHIP_CARRIZO:
|
case CHIP_CARRIZO:
|
||||||
amdgpu_program_register_sequence(adev,
|
amdgpu_program_register_sequence(adev,
|
||||||
|
|
|
@ -98,6 +98,7 @@
|
||||||
#define PCIE_BUS_CLK 10000
|
#define PCIE_BUS_CLK 10000
|
||||||
#define TCLK (PCIE_BUS_CLK / 10)
|
#define TCLK (PCIE_BUS_CLK / 10)
|
||||||
|
|
||||||
|
#define CEILING_UCHAR(double) ((double-(uint8_t)(double)) > 0 ? (uint8_t)(double+1) : (uint8_t)(double))
|
||||||
|
|
||||||
static const uint16_t polaris10_clock_stretcher_lookup_table[2][4] =
|
static const uint16_t polaris10_clock_stretcher_lookup_table[2][4] =
|
||||||
{ {600, 1050, 3, 0}, {600, 1050, 6, 1} };
|
{ {600, 1050, 3, 0}, {600, 1050, 6, 1} };
|
||||||
|
@ -1422,22 +1423,19 @@ static int polaris10_populate_smc_acpi_level(struct pp_hwmgr *hwmgr,
|
||||||
|
|
||||||
table->ACPILevel.Flags &= ~PPSMC_SWSTATE_FLAG_DC;
|
table->ACPILevel.Flags &= ~PPSMC_SWSTATE_FLAG_DC;
|
||||||
|
|
||||||
if (!data->sclk_dpm_key_disabled) {
|
|
||||||
/* Get MinVoltage and Frequency from DPM0,
|
/* Get MinVoltage and Frequency from DPM0,
|
||||||
* already converted to SMC_UL */
|
* already converted to SMC_UL */
|
||||||
sclk_frequency = data->dpm_table.sclk_table.dpm_levels[0].value;
|
sclk_frequency = data->dpm_table.sclk_table.dpm_levels[0].value;
|
||||||
result = polaris10_get_dependency_volt_by_clk(hwmgr,
|
result = polaris10_get_dependency_volt_by_clk(hwmgr,
|
||||||
table_info->vdd_dep_on_sclk,
|
table_info->vdd_dep_on_sclk,
|
||||||
table->ACPILevel.SclkFrequency,
|
sclk_frequency,
|
||||||
&table->ACPILevel.MinVoltage, &mvdd);
|
&table->ACPILevel.MinVoltage, &mvdd);
|
||||||
PP_ASSERT_WITH_CODE((0 == result),
|
PP_ASSERT_WITH_CODE((0 == result),
|
||||||
"Cannot find ACPI VDDC voltage value "
|
"Cannot find ACPI VDDC voltage value "
|
||||||
"in Clock Dependency Table", );
|
"in Clock Dependency Table",
|
||||||
} else {
|
);
|
||||||
sclk_frequency = data->vbios_boot_state.sclk_bootup_value;
|
|
||||||
table->ACPILevel.MinVoltage =
|
|
||||||
data->vbios_boot_state.vddc_bootup_value * VOLTAGE_SCALE;
|
|
||||||
}
|
|
||||||
|
|
||||||
result = polaris10_calculate_sclk_params(hwmgr, sclk_frequency, &(table->ACPILevel.SclkSetting));
|
result = polaris10_calculate_sclk_params(hwmgr, sclk_frequency, &(table->ACPILevel.SclkSetting));
|
||||||
PP_ASSERT_WITH_CODE(result == 0, "Error retrieving Engine Clock dividers from VBIOS.", return result);
|
PP_ASSERT_WITH_CODE(result == 0, "Error retrieving Engine Clock dividers from VBIOS.", return result);
|
||||||
|
@ -1462,24 +1460,18 @@ static int polaris10_populate_smc_acpi_level(struct pp_hwmgr *hwmgr,
|
||||||
CONVERT_FROM_HOST_TO_SMC_US(table->ACPILevel.SclkSetting.Fcw1_frac);
|
CONVERT_FROM_HOST_TO_SMC_US(table->ACPILevel.SclkSetting.Fcw1_frac);
|
||||||
CONVERT_FROM_HOST_TO_SMC_US(table->ACPILevel.SclkSetting.Sclk_ss_slew_rate);
|
CONVERT_FROM_HOST_TO_SMC_US(table->ACPILevel.SclkSetting.Sclk_ss_slew_rate);
|
||||||
|
|
||||||
if (!data->mclk_dpm_key_disabled) {
|
|
||||||
/* Get MinVoltage and Frequency from DPM0, already converted to SMC_UL */
|
/* Get MinVoltage and Frequency from DPM0, already converted to SMC_UL */
|
||||||
table->MemoryACPILevel.MclkFrequency =
|
table->MemoryACPILevel.MclkFrequency =
|
||||||
data->dpm_table.mclk_table.dpm_levels[0].value;
|
data->dpm_table.mclk_table.dpm_levels[0].value;
|
||||||
result = polaris10_get_dependency_volt_by_clk(hwmgr,
|
result = polaris10_get_dependency_volt_by_clk(hwmgr,
|
||||||
table_info->vdd_dep_on_mclk,
|
table_info->vdd_dep_on_mclk,
|
||||||
table->MemoryACPILevel.MclkFrequency,
|
table->MemoryACPILevel.MclkFrequency,
|
||||||
&table->MemoryACPILevel.MinVoltage, &mvdd);
|
&table->MemoryACPILevel.MinVoltage, &mvdd);
|
||||||
PP_ASSERT_WITH_CODE((0 == result),
|
PP_ASSERT_WITH_CODE((0 == result),
|
||||||
"Cannot find ACPI VDDCI voltage value "
|
"Cannot find ACPI VDDCI voltage value "
|
||||||
"in Clock Dependency Table",
|
"in Clock Dependency Table",
|
||||||
);
|
);
|
||||||
} else {
|
|
||||||
table->MemoryACPILevel.MclkFrequency =
|
|
||||||
data->vbios_boot_state.mclk_bootup_value;
|
|
||||||
table->MemoryACPILevel.MinVoltage =
|
|
||||||
data->vbios_boot_state.vddci_bootup_value * VOLTAGE_SCALE;
|
|
||||||
}
|
|
||||||
|
|
||||||
us_mvdd = 0;
|
us_mvdd = 0;
|
||||||
if ((POLARIS10_VOLTAGE_CONTROL_NONE == data->mvdd_control) ||
|
if ((POLARIS10_VOLTAGE_CONTROL_NONE == data->mvdd_control) ||
|
||||||
|
@ -1524,6 +1516,7 @@ static int polaris10_populate_smc_vce_level(struct pp_hwmgr *hwmgr,
|
||||||
struct phm_ppt_v1_mm_clock_voltage_dependency_table *mm_table =
|
struct phm_ppt_v1_mm_clock_voltage_dependency_table *mm_table =
|
||||||
table_info->mm_dep_table;
|
table_info->mm_dep_table;
|
||||||
struct polaris10_hwmgr *data = (struct polaris10_hwmgr *)(hwmgr->backend);
|
struct polaris10_hwmgr *data = (struct polaris10_hwmgr *)(hwmgr->backend);
|
||||||
|
uint32_t vddci;
|
||||||
|
|
||||||
table->VceLevelCount = (uint8_t)(mm_table->count);
|
table->VceLevelCount = (uint8_t)(mm_table->count);
|
||||||
table->VceBootLevel = 0;
|
table->VceBootLevel = 0;
|
||||||
|
@ -1533,9 +1526,18 @@ static int polaris10_populate_smc_vce_level(struct pp_hwmgr *hwmgr,
|
||||||
table->VceLevel[count].MinVoltage = 0;
|
table->VceLevel[count].MinVoltage = 0;
|
||||||
table->VceLevel[count].MinVoltage |=
|
table->VceLevel[count].MinVoltage |=
|
||||||
(mm_table->entries[count].vddc * VOLTAGE_SCALE) << VDDC_SHIFT;
|
(mm_table->entries[count].vddc * VOLTAGE_SCALE) << VDDC_SHIFT;
|
||||||
|
|
||||||
|
if (POLARIS10_VOLTAGE_CONTROL_BY_GPIO == data->vddci_control)
|
||||||
|
vddci = (uint32_t)phm_find_closest_vddci(&(data->vddci_voltage_table),
|
||||||
|
mm_table->entries[count].vddc - VDDC_VDDCI_DELTA);
|
||||||
|
else if (POLARIS10_VOLTAGE_CONTROL_BY_SVID2 == data->vddci_control)
|
||||||
|
vddci = mm_table->entries[count].vddc - VDDC_VDDCI_DELTA;
|
||||||
|
else
|
||||||
|
vddci = (data->vbios_boot_state.vddci_bootup_value * VOLTAGE_SCALE) << VDDCI_SHIFT;
|
||||||
|
|
||||||
|
|
||||||
table->VceLevel[count].MinVoltage |=
|
table->VceLevel[count].MinVoltage |=
|
||||||
((mm_table->entries[count].vddc - data->vddc_vddci_delta) *
|
(vddci * VOLTAGE_SCALE) << VDDCI_SHIFT;
|
||||||
VOLTAGE_SCALE) << VDDCI_SHIFT;
|
|
||||||
table->VceLevel[count].MinVoltage |= 1 << PHASES_SHIFT;
|
table->VceLevel[count].MinVoltage |= 1 << PHASES_SHIFT;
|
||||||
|
|
||||||
/*retrieve divider value for VBIOS */
|
/*retrieve divider value for VBIOS */
|
||||||
|
@ -1564,6 +1566,7 @@ static int polaris10_populate_smc_samu_level(struct pp_hwmgr *hwmgr,
|
||||||
struct phm_ppt_v1_mm_clock_voltage_dependency_table *mm_table =
|
struct phm_ppt_v1_mm_clock_voltage_dependency_table *mm_table =
|
||||||
table_info->mm_dep_table;
|
table_info->mm_dep_table;
|
||||||
struct polaris10_hwmgr *data = (struct polaris10_hwmgr *)(hwmgr->backend);
|
struct polaris10_hwmgr *data = (struct polaris10_hwmgr *)(hwmgr->backend);
|
||||||
|
uint32_t vddci;
|
||||||
|
|
||||||
table->SamuBootLevel = 0;
|
table->SamuBootLevel = 0;
|
||||||
table->SamuLevelCount = (uint8_t)(mm_table->count);
|
table->SamuLevelCount = (uint8_t)(mm_table->count);
|
||||||
|
@ -1574,8 +1577,16 @@ static int polaris10_populate_smc_samu_level(struct pp_hwmgr *hwmgr,
|
||||||
table->SamuLevel[count].Frequency = mm_table->entries[count].samclock;
|
table->SamuLevel[count].Frequency = mm_table->entries[count].samclock;
|
||||||
table->SamuLevel[count].MinVoltage |= (mm_table->entries[count].vddc *
|
table->SamuLevel[count].MinVoltage |= (mm_table->entries[count].vddc *
|
||||||
VOLTAGE_SCALE) << VDDC_SHIFT;
|
VOLTAGE_SCALE) << VDDC_SHIFT;
|
||||||
table->SamuLevel[count].MinVoltage |= ((mm_table->entries[count].vddc -
|
|
||||||
data->vddc_vddci_delta) * VOLTAGE_SCALE) << VDDCI_SHIFT;
|
if (POLARIS10_VOLTAGE_CONTROL_BY_GPIO == data->vddci_control)
|
||||||
|
vddci = (uint32_t)phm_find_closest_vddci(&(data->vddci_voltage_table),
|
||||||
|
mm_table->entries[count].vddc - VDDC_VDDCI_DELTA);
|
||||||
|
else if (POLARIS10_VOLTAGE_CONTROL_BY_SVID2 == data->vddci_control)
|
||||||
|
vddci = mm_table->entries[count].vddc - VDDC_VDDCI_DELTA;
|
||||||
|
else
|
||||||
|
vddci = (data->vbios_boot_state.vddci_bootup_value * VOLTAGE_SCALE) << VDDCI_SHIFT;
|
||||||
|
|
||||||
|
table->SamuLevel[count].MinVoltage |= (vddci * VOLTAGE_SCALE) << VDDCI_SHIFT;
|
||||||
table->SamuLevel[count].MinVoltage |= 1 << PHASES_SHIFT;
|
table->SamuLevel[count].MinVoltage |= 1 << PHASES_SHIFT;
|
||||||
|
|
||||||
/* retrieve divider value for VBIOS */
|
/* retrieve divider value for VBIOS */
|
||||||
|
@ -1658,6 +1669,7 @@ static int polaris10_populate_smc_uvd_level(struct pp_hwmgr *hwmgr,
|
||||||
struct phm_ppt_v1_mm_clock_voltage_dependency_table *mm_table =
|
struct phm_ppt_v1_mm_clock_voltage_dependency_table *mm_table =
|
||||||
table_info->mm_dep_table;
|
table_info->mm_dep_table;
|
||||||
struct polaris10_hwmgr *data = (struct polaris10_hwmgr *)(hwmgr->backend);
|
struct polaris10_hwmgr *data = (struct polaris10_hwmgr *)(hwmgr->backend);
|
||||||
|
uint32_t vddci;
|
||||||
|
|
||||||
table->UvdLevelCount = (uint8_t)(mm_table->count);
|
table->UvdLevelCount = (uint8_t)(mm_table->count);
|
||||||
table->UvdBootLevel = 0;
|
table->UvdBootLevel = 0;
|
||||||
|
@ -1668,8 +1680,16 @@ static int polaris10_populate_smc_uvd_level(struct pp_hwmgr *hwmgr,
|
||||||
table->UvdLevel[count].DclkFrequency = mm_table->entries[count].dclk;
|
table->UvdLevel[count].DclkFrequency = mm_table->entries[count].dclk;
|
||||||
table->UvdLevel[count].MinVoltage |= (mm_table->entries[count].vddc *
|
table->UvdLevel[count].MinVoltage |= (mm_table->entries[count].vddc *
|
||||||
VOLTAGE_SCALE) << VDDC_SHIFT;
|
VOLTAGE_SCALE) << VDDC_SHIFT;
|
||||||
table->UvdLevel[count].MinVoltage |= ((mm_table->entries[count].vddc -
|
|
||||||
data->vddc_vddci_delta) * VOLTAGE_SCALE) << VDDCI_SHIFT;
|
if (POLARIS10_VOLTAGE_CONTROL_BY_GPIO == data->vddci_control)
|
||||||
|
vddci = (uint32_t)phm_find_closest_vddci(&(data->vddci_voltage_table),
|
||||||
|
mm_table->entries[count].vddc - VDDC_VDDCI_DELTA);
|
||||||
|
else if (POLARIS10_VOLTAGE_CONTROL_BY_SVID2 == data->vddci_control)
|
||||||
|
vddci = mm_table->entries[count].vddc - VDDC_VDDCI_DELTA;
|
||||||
|
else
|
||||||
|
vddci = (data->vbios_boot_state.vddci_bootup_value * VOLTAGE_SCALE) << VDDCI_SHIFT;
|
||||||
|
|
||||||
|
table->UvdLevel[count].MinVoltage |= (vddci * VOLTAGE_SCALE) << VDDCI_SHIFT;
|
||||||
table->UvdLevel[count].MinVoltage |= 1 << PHASES_SHIFT;
|
table->UvdLevel[count].MinVoltage |= 1 << PHASES_SHIFT;
|
||||||
|
|
||||||
/* retrieve divider value for VBIOS */
|
/* retrieve divider value for VBIOS */
|
||||||
|
@ -1690,8 +1710,8 @@ static int polaris10_populate_smc_uvd_level(struct pp_hwmgr *hwmgr,
|
||||||
CONVERT_FROM_HOST_TO_SMC_UL(table->UvdLevel[count].VclkFrequency);
|
CONVERT_FROM_HOST_TO_SMC_UL(table->UvdLevel[count].VclkFrequency);
|
||||||
CONVERT_FROM_HOST_TO_SMC_UL(table->UvdLevel[count].DclkFrequency);
|
CONVERT_FROM_HOST_TO_SMC_UL(table->UvdLevel[count].DclkFrequency);
|
||||||
CONVERT_FROM_HOST_TO_SMC_UL(table->UvdLevel[count].MinVoltage);
|
CONVERT_FROM_HOST_TO_SMC_UL(table->UvdLevel[count].MinVoltage);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1787,24 +1807,32 @@ static int polaris10_populate_clock_stretcher_data_table(struct pp_hwmgr *hwmgr)
|
||||||
|
|
||||||
ro = efuse * (max -min)/255 + min;
|
ro = efuse * (max -min)/255 + min;
|
||||||
|
|
||||||
/* Populate Sclk_CKS_masterEn0_7 and Sclk_voltageOffset */
|
/* Populate Sclk_CKS_masterEn0_7 and Sclk_voltageOffset
|
||||||
|
* there is a little difference in calculating
|
||||||
|
* volt_with_cks with windows */
|
||||||
for (i = 0; i < sclk_table->count; i++) {
|
for (i = 0; i < sclk_table->count; i++) {
|
||||||
data->smc_state_table.Sclk_CKS_masterEn0_7 |=
|
data->smc_state_table.Sclk_CKS_masterEn0_7 |=
|
||||||
sclk_table->entries[i].cks_enable << i;
|
sclk_table->entries[i].cks_enable << i;
|
||||||
|
if (hwmgr->chip_id == CHIP_POLARIS10) {
|
||||||
volt_without_cks = (uint32_t)(((ro - 40) * 1000 - 2753594 - sclk_table->entries[i].clk/100 * 136418 /1000) / \
|
volt_without_cks = (uint32_t)((2753594000 + (sclk_table->entries[i].clk/100) * 136418 -(ro - 70) * 1000000) / \
|
||||||
(sclk_table->entries[i].clk/100 * 1132925 /10000 - 242418)/100);
|
(2424180 - (sclk_table->entries[i].clk/100) * 1132925/1000));
|
||||||
|
volt_with_cks = (uint32_t)((279720200 + sclk_table->entries[i].clk * 3232 - (ro - 65) * 100000000) / \
|
||||||
volt_with_cks = (uint32_t)((ro * 1000 -2396351 - sclk_table->entries[i].clk/100 * 329021/1000) / \
|
(252248000 - sclk_table->entries[i].clk/100 * 115764));
|
||||||
(sclk_table->entries[i].clk/10000 * 649434 /1000 - 18005)/10);
|
} else {
|
||||||
|
volt_without_cks = (uint32_t)((2416794800 + (sclk_table->entries[i].clk/100) * 1476925/10 -(ro - 50) * 1000000) / \
|
||||||
|
(2625416 - (sclk_table->entries[i].clk/100) * 12586807/10000));
|
||||||
|
volt_with_cks = (uint32_t)((2999656000 + sclk_table->entries[i].clk * 392803/100 - (ro - 44) * 1000000) / \
|
||||||
|
(3422454 - sclk_table->entries[i].clk/100 * 18886376/10000));
|
||||||
|
}
|
||||||
|
|
||||||
if (volt_without_cks >= volt_with_cks)
|
if (volt_without_cks >= volt_with_cks)
|
||||||
volt_offset = (uint8_t)(((volt_without_cks - volt_with_cks +
|
volt_offset = (uint8_t)CEILING_UCHAR((volt_without_cks - volt_with_cks +
|
||||||
sclk_table->entries[i].cks_voffset) * 100 / 625) + 1);
|
sclk_table->entries[i].cks_voffset) * 100 / 625);
|
||||||
|
|
||||||
data->smc_state_table.Sclk_voltageOffset[i] = volt_offset;
|
data->smc_state_table.Sclk_voltageOffset[i] = volt_offset;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
data->smc_state_table.LdoRefSel = (table_info->cac_dtp_table->ucCKS_LDO_REFSEL != 0) ? table_info->cac_dtp_table->ucCKS_LDO_REFSEL : 6;
|
||||||
/* Populate CKS Lookup Table */
|
/* Populate CKS Lookup Table */
|
||||||
if (stretch_amount == 1 || stretch_amount == 2 || stretch_amount == 5)
|
if (stretch_amount == 1 || stretch_amount == 2 || stretch_amount == 5)
|
||||||
stretch_amount2 = 0;
|
stretch_amount2 = 0;
|
||||||
|
@ -2487,6 +2515,8 @@ int polaris10_enable_dpm_tasks(struct pp_hwmgr *hwmgr)
|
||||||
PP_ASSERT_WITH_CODE((0 == tmp_result),
|
PP_ASSERT_WITH_CODE((0 == tmp_result),
|
||||||
"Failed to enable VR hot GPIO interrupt!", result = tmp_result);
|
"Failed to enable VR hot GPIO interrupt!", result = tmp_result);
|
||||||
|
|
||||||
|
smum_send_msg_to_smc(hwmgr->smumgr, (PPSMC_Msg)PPSMC_HasDisplay);
|
||||||
|
|
||||||
tmp_result = polaris10_enable_sclk_control(hwmgr);
|
tmp_result = polaris10_enable_sclk_control(hwmgr);
|
||||||
PP_ASSERT_WITH_CODE((0 == tmp_result),
|
PP_ASSERT_WITH_CODE((0 == tmp_result),
|
||||||
"Failed to enable SCLK control!", result = tmp_result);
|
"Failed to enable SCLK control!", result = tmp_result);
|
||||||
|
@ -2913,6 +2943,31 @@ static int polaris10_set_private_data_based_on_pptable(struct pp_hwmgr *hwmgr)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int polaris10_patch_voltage_workaround(struct pp_hwmgr *hwmgr)
|
||||||
|
{
|
||||||
|
struct phm_ppt_v1_information *table_info =
|
||||||
|
(struct phm_ppt_v1_information *)(hwmgr->pptable);
|
||||||
|
struct phm_ppt_v1_clock_voltage_dependency_table *dep_mclk_table =
|
||||||
|
table_info->vdd_dep_on_mclk;
|
||||||
|
struct phm_ppt_v1_voltage_lookup_table *lookup_table =
|
||||||
|
table_info->vddc_lookup_table;
|
||||||
|
uint32_t i;
|
||||||
|
|
||||||
|
if (hwmgr->chip_id == CHIP_POLARIS10 && hwmgr->hw_revision == 0xC7) {
|
||||||
|
if (lookup_table->entries[dep_mclk_table->entries[dep_mclk_table->count-1].vddInd].us_vdd >= 1000)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
for (i = 0; i < lookup_table->count; i++) {
|
||||||
|
if (lookup_table->entries[i].us_vdd < 0xff01 && lookup_table->entries[i].us_vdd >= 1000) {
|
||||||
|
dep_mclk_table->entries[dep_mclk_table->count-1].vddInd = (uint8_t) i;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
int polaris10_hwmgr_backend_init(struct pp_hwmgr *hwmgr)
|
int polaris10_hwmgr_backend_init(struct pp_hwmgr *hwmgr)
|
||||||
{
|
{
|
||||||
struct polaris10_hwmgr *data = (struct polaris10_hwmgr *)(hwmgr->backend);
|
struct polaris10_hwmgr *data = (struct polaris10_hwmgr *)(hwmgr->backend);
|
||||||
|
@ -2990,6 +3045,7 @@ int polaris10_hwmgr_backend_init(struct pp_hwmgr *hwmgr)
|
||||||
|
|
||||||
polaris10_set_features_platform_caps(hwmgr);
|
polaris10_set_features_platform_caps(hwmgr);
|
||||||
|
|
||||||
|
polaris10_patch_voltage_workaround(hwmgr);
|
||||||
polaris10_init_dpm_defaults(hwmgr);
|
polaris10_init_dpm_defaults(hwmgr);
|
||||||
|
|
||||||
/* Get leakage voltage based on leakage ID. */
|
/* Get leakage voltage based on leakage ID. */
|
||||||
|
@ -4359,6 +4415,15 @@ static int polaris10_notify_link_speed_change_after_state_change(
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int polaris10_notify_smc_display(struct pp_hwmgr *hwmgr)
|
||||||
|
{
|
||||||
|
struct polaris10_hwmgr *data = (struct polaris10_hwmgr *)(hwmgr->backend);
|
||||||
|
|
||||||
|
smum_send_msg_to_smc_with_parameter(hwmgr->smumgr,
|
||||||
|
(PPSMC_Msg)PPSMC_MSG_SetVBITimeout, data->frame_time_x2);
|
||||||
|
return (smum_send_msg_to_smc(hwmgr->smumgr, (PPSMC_Msg)PPSMC_HasDisplay) == 0) ? 0 : -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
static int polaris10_set_power_state_tasks(struct pp_hwmgr *hwmgr, const void *input)
|
static int polaris10_set_power_state_tasks(struct pp_hwmgr *hwmgr, const void *input)
|
||||||
{
|
{
|
||||||
int tmp_result, result = 0;
|
int tmp_result, result = 0;
|
||||||
|
@ -4407,6 +4472,11 @@ static int polaris10_set_power_state_tasks(struct pp_hwmgr *hwmgr, const void *i
|
||||||
"Failed to program memory timing parameters!",
|
"Failed to program memory timing parameters!",
|
||||||
result = tmp_result);
|
result = tmp_result);
|
||||||
|
|
||||||
|
tmp_result = polaris10_notify_smc_display(hwmgr);
|
||||||
|
PP_ASSERT_WITH_CODE((0 == tmp_result),
|
||||||
|
"Failed to notify smc display settings!",
|
||||||
|
result = tmp_result);
|
||||||
|
|
||||||
tmp_result = polaris10_unfreeze_sclk_mclk_dpm(hwmgr);
|
tmp_result = polaris10_unfreeze_sclk_mclk_dpm(hwmgr);
|
||||||
PP_ASSERT_WITH_CODE((0 == tmp_result),
|
PP_ASSERT_WITH_CODE((0 == tmp_result),
|
||||||
"Failed to unfreeze SCLK MCLK DPM!",
|
"Failed to unfreeze SCLK MCLK DPM!",
|
||||||
|
@ -4441,6 +4511,7 @@ static int polaris10_set_max_fan_pwm_output(struct pp_hwmgr *hwmgr, uint16_t us_
|
||||||
PPSMC_MSG_SetFanPwmMax, us_max_fan_pwm);
|
PPSMC_MSG_SetFanPwmMax, us_max_fan_pwm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int polaris10_notify_smc_display_change(struct pp_hwmgr *hwmgr, bool has_display)
|
int polaris10_notify_smc_display_change(struct pp_hwmgr *hwmgr, bool has_display)
|
||||||
{
|
{
|
||||||
PPSMC_Msg msg = has_display ? (PPSMC_Msg)PPSMC_HasDisplay : (PPSMC_Msg)PPSMC_NoDisplay;
|
PPSMC_Msg msg = has_display ? (PPSMC_Msg)PPSMC_HasDisplay : (PPSMC_Msg)PPSMC_NoDisplay;
|
||||||
|
@ -4460,8 +4531,6 @@ int polaris10_notify_smc_display_config_after_ps_adjustment(struct pp_hwmgr *hwm
|
||||||
|
|
||||||
if (num_active_displays > 1) /* to do && (pHwMgr->pPECI->displayConfiguration.bMultiMonitorInSync != TRUE)) */
|
if (num_active_displays > 1) /* to do && (pHwMgr->pPECI->displayConfiguration.bMultiMonitorInSync != TRUE)) */
|
||||||
polaris10_notify_smc_display_change(hwmgr, false);
|
polaris10_notify_smc_display_change(hwmgr, false);
|
||||||
else
|
|
||||||
polaris10_notify_smc_display_change(hwmgr, true);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -4502,6 +4571,8 @@ int polaris10_program_display_gap(struct pp_hwmgr *hwmgr)
|
||||||
frame_time_in_us = 1000000 / refresh_rate;
|
frame_time_in_us = 1000000 / refresh_rate;
|
||||||
|
|
||||||
pre_vbi_time_in_us = frame_time_in_us - 200 - mode_info.vblank_time_us;
|
pre_vbi_time_in_us = frame_time_in_us - 200 - mode_info.vblank_time_us;
|
||||||
|
data->frame_time_x2 = frame_time_in_us * 2 / 100;
|
||||||
|
|
||||||
display_gap2 = pre_vbi_time_in_us * (ref_clock / 100);
|
display_gap2 = pre_vbi_time_in_us * (ref_clock / 100);
|
||||||
|
|
||||||
cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_DISPLAY_GAP_CNTL2, display_gap2);
|
cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_DISPLAY_GAP_CNTL2, display_gap2);
|
||||||
|
@ -4510,8 +4581,6 @@ int polaris10_program_display_gap(struct pp_hwmgr *hwmgr)
|
||||||
|
|
||||||
cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC, data->soft_regs_start + offsetof(SMU74_SoftRegisters, VBlankTimeout), (frame_time_in_us - pre_vbi_time_in_us));
|
cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC, data->soft_regs_start + offsetof(SMU74_SoftRegisters, VBlankTimeout), (frame_time_in_us - pre_vbi_time_in_us));
|
||||||
|
|
||||||
polaris10_notify_smc_display_change(hwmgr, num_active_displays != 0);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4623,7 +4692,7 @@ int polaris10_upload_mc_firmware(struct pp_hwmgr *hwmgr)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
data->need_long_memory_training = true;
|
data->need_long_memory_training = false;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PPMCME_FirmwareDescriptorEntry *pfd = NULL;
|
* PPMCME_FirmwareDescriptorEntry *pfd = NULL;
|
||||||
|
|
|
@ -315,6 +315,7 @@ struct polaris10_hwmgr {
|
||||||
|
|
||||||
uint32_t avfs_vdroop_override_setting;
|
uint32_t avfs_vdroop_override_setting;
|
||||||
bool apply_avfs_cks_off_voltage;
|
bool apply_avfs_cks_off_voltage;
|
||||||
|
uint32_t frame_time_x2;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* To convert to Q8.8 format for firmware */
|
/* To convert to Q8.8 format for firmware */
|
||||||
|
|
|
@ -411,6 +411,8 @@ struct phm_cac_tdp_table {
|
||||||
uint8_t ucVr_I2C_Line;
|
uint8_t ucVr_I2C_Line;
|
||||||
uint8_t ucPlx_I2C_address;
|
uint8_t ucPlx_I2C_address;
|
||||||
uint8_t ucPlx_I2C_Line;
|
uint8_t ucPlx_I2C_Line;
|
||||||
|
uint32_t usBoostPowerLimit;
|
||||||
|
uint8_t ucCKS_LDO_REFSEL;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct phm_ppm_table {
|
struct phm_ppm_table {
|
||||||
|
|
|
@ -392,6 +392,8 @@ typedef uint16_t PPSMC_Result;
|
||||||
#define PPSMC_MSG_SetGpuPllDfsForSclk ((uint16_t) 0x300)
|
#define PPSMC_MSG_SetGpuPllDfsForSclk ((uint16_t) 0x300)
|
||||||
#define PPSMC_MSG_Didt_Block_Function ((uint16_t) 0x301)
|
#define PPSMC_MSG_Didt_Block_Function ((uint16_t) 0x301)
|
||||||
|
|
||||||
|
#define PPSMC_MSG_SetVBITimeout ((uint16_t) 0x306)
|
||||||
|
|
||||||
#define PPSMC_MSG_SecureSRBMWrite ((uint16_t) 0x600)
|
#define PPSMC_MSG_SecureSRBMWrite ((uint16_t) 0x600)
|
||||||
#define PPSMC_MSG_SecureSRBMRead ((uint16_t) 0x601)
|
#define PPSMC_MSG_SecureSRBMRead ((uint16_t) 0x601)
|
||||||
#define PPSMC_MSG_SetAddress ((uint16_t) 0x800)
|
#define PPSMC_MSG_SetAddress ((uint16_t) 0x800)
|
||||||
|
|
|
@ -270,7 +270,8 @@ struct SMU74_Discrete_DpmTable {
|
||||||
uint8_t BootPhases;
|
uint8_t BootPhases;
|
||||||
|
|
||||||
uint8_t VRHotLevel;
|
uint8_t VRHotLevel;
|
||||||
uint8_t Reserved1[3];
|
uint8_t LdoRefSel;
|
||||||
|
uint8_t Reserved1[2];
|
||||||
uint16_t FanStartTemperature;
|
uint16_t FanStartTemperature;
|
||||||
uint16_t FanStopTemperature;
|
uint16_t FanStopTemperature;
|
||||||
uint16_t MaxVoltage;
|
uint16_t MaxVoltage;
|
||||||
|
|
|
@ -2365,16 +2365,16 @@ static int i915_ppgtt_info(struct seq_file *m, void *data)
|
||||||
task = get_pid_task(file->pid, PIDTYPE_PID);
|
task = get_pid_task(file->pid, PIDTYPE_PID);
|
||||||
if (!task) {
|
if (!task) {
|
||||||
ret = -ESRCH;
|
ret = -ESRCH;
|
||||||
goto out_put;
|
goto out_unlock;
|
||||||
}
|
}
|
||||||
seq_printf(m, "\nproc: %s\n", task->comm);
|
seq_printf(m, "\nproc: %s\n", task->comm);
|
||||||
put_task_struct(task);
|
put_task_struct(task);
|
||||||
idr_for_each(&file_priv->context_idr, per_file_ctx,
|
idr_for_each(&file_priv->context_idr, per_file_ctx,
|
||||||
(void *)(unsigned long)m);
|
(void *)(unsigned long)m);
|
||||||
}
|
}
|
||||||
|
out_unlock:
|
||||||
mutex_unlock(&dev->filelist_mutex);
|
mutex_unlock(&dev->filelist_mutex);
|
||||||
|
|
||||||
out_put:
|
|
||||||
intel_runtime_pm_put(dev_priv);
|
intel_runtime_pm_put(dev_priv);
|
||||||
mutex_unlock(&dev->struct_mutex);
|
mutex_unlock(&dev->struct_mutex);
|
||||||
|
|
||||||
|
|
|
@ -8447,16 +8447,16 @@ static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
|
||||||
tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
|
tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
|
||||||
I915_WRITE(SOUTH_CHICKEN2, tmp);
|
I915_WRITE(SOUTH_CHICKEN2, tmp);
|
||||||
|
|
||||||
if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
|
if (wait_for_us(I915_READ(SOUTH_CHICKEN2) &
|
||||||
FDI_MPHY_IOSFSB_RESET_STATUS, 100))
|
FDI_MPHY_IOSFSB_RESET_STATUS, 100))
|
||||||
DRM_ERROR("FDI mPHY reset assert timeout\n");
|
DRM_ERROR("FDI mPHY reset assert timeout\n");
|
||||||
|
|
||||||
tmp = I915_READ(SOUTH_CHICKEN2);
|
tmp = I915_READ(SOUTH_CHICKEN2);
|
||||||
tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
|
tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
|
||||||
I915_WRITE(SOUTH_CHICKEN2, tmp);
|
I915_WRITE(SOUTH_CHICKEN2, tmp);
|
||||||
|
|
||||||
if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
|
if (wait_for_us((I915_READ(SOUTH_CHICKEN2) &
|
||||||
FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
|
FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
|
||||||
DRM_ERROR("FDI mPHY reset de-assert timeout\n");
|
DRM_ERROR("FDI mPHY reset de-assert timeout\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9440,8 +9440,8 @@ static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
|
||||||
val |= LCPLL_CD_SOURCE_FCLK;
|
val |= LCPLL_CD_SOURCE_FCLK;
|
||||||
I915_WRITE(LCPLL_CTL, val);
|
I915_WRITE(LCPLL_CTL, val);
|
||||||
|
|
||||||
if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
|
if (wait_for_us(I915_READ(LCPLL_CTL) &
|
||||||
LCPLL_CD_SOURCE_FCLK_DONE, 1))
|
LCPLL_CD_SOURCE_FCLK_DONE, 1))
|
||||||
DRM_ERROR("Switching to FCLK failed\n");
|
DRM_ERROR("Switching to FCLK failed\n");
|
||||||
|
|
||||||
val = I915_READ(LCPLL_CTL);
|
val = I915_READ(LCPLL_CTL);
|
||||||
|
@ -9514,8 +9514,8 @@ static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
|
||||||
val &= ~LCPLL_CD_SOURCE_FCLK;
|
val &= ~LCPLL_CD_SOURCE_FCLK;
|
||||||
I915_WRITE(LCPLL_CTL, val);
|
I915_WRITE(LCPLL_CTL, val);
|
||||||
|
|
||||||
if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
|
if (wait_for_us((I915_READ(LCPLL_CTL) &
|
||||||
LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
|
LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
|
||||||
DRM_ERROR("Switching back to LCPLL failed\n");
|
DRM_ERROR("Switching back to LCPLL failed\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -663,7 +663,7 @@ intel_dp_aux_wait_done(struct intel_dp *intel_dp, bool has_aux_irq)
|
||||||
done = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
|
done = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
|
||||||
msecs_to_jiffies_timeout(10));
|
msecs_to_jiffies_timeout(10));
|
||||||
else
|
else
|
||||||
done = wait_for_atomic(C, 10) == 0;
|
done = wait_for(C, 10) == 0;
|
||||||
if (!done)
|
if (!done)
|
||||||
DRM_ERROR("dp aux hw did not signal timeout (has irq: %i)!\n",
|
DRM_ERROR("dp aux hw did not signal timeout (has irq: %i)!\n",
|
||||||
has_aux_irq);
|
has_aux_irq);
|
||||||
|
@ -4899,13 +4899,15 @@ static void intel_edp_panel_vdd_sanitize(struct intel_dp *intel_dp)
|
||||||
|
|
||||||
void intel_dp_encoder_reset(struct drm_encoder *encoder)
|
void intel_dp_encoder_reset(struct drm_encoder *encoder)
|
||||||
{
|
{
|
||||||
struct intel_dp *intel_dp;
|
struct drm_i915_private *dev_priv = to_i915(encoder->dev);
|
||||||
|
struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
|
||||||
|
|
||||||
|
if (!HAS_DDI(dev_priv))
|
||||||
|
intel_dp->DP = I915_READ(intel_dp->output_reg);
|
||||||
|
|
||||||
if (to_intel_encoder(encoder)->type != INTEL_OUTPUT_EDP)
|
if (to_intel_encoder(encoder)->type != INTEL_OUTPUT_EDP)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
intel_dp = enc_to_intel_dp(encoder);
|
|
||||||
|
|
||||||
pps_lock(intel_dp);
|
pps_lock(intel_dp);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -1377,8 +1377,8 @@ static void bxt_ddi_pll_enable(struct drm_i915_private *dev_priv,
|
||||||
I915_WRITE(BXT_PORT_PLL_ENABLE(port), temp);
|
I915_WRITE(BXT_PORT_PLL_ENABLE(port), temp);
|
||||||
POSTING_READ(BXT_PORT_PLL_ENABLE(port));
|
POSTING_READ(BXT_PORT_PLL_ENABLE(port));
|
||||||
|
|
||||||
if (wait_for_atomic_us((I915_READ(BXT_PORT_PLL_ENABLE(port)) &
|
if (wait_for_us((I915_READ(BXT_PORT_PLL_ENABLE(port)) & PORT_PLL_LOCK),
|
||||||
PORT_PLL_LOCK), 200))
|
200))
|
||||||
DRM_ERROR("PLL %d not locked\n", port);
|
DRM_ERROR("PLL %d not locked\n", port);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -81,7 +81,7 @@ static int kxsd9_write_scale(struct iio_dev *indio_dev, int micro)
|
||||||
|
|
||||||
mutex_lock(&st->buf_lock);
|
mutex_lock(&st->buf_lock);
|
||||||
ret = spi_w8r8(st->us, KXSD9_READ(KXSD9_REG_CTRL_C));
|
ret = spi_w8r8(st->us, KXSD9_READ(KXSD9_REG_CTRL_C));
|
||||||
if (ret)
|
if (ret < 0)
|
||||||
goto error_ret;
|
goto error_ret;
|
||||||
st->tx[0] = KXSD9_WRITE(KXSD9_REG_CTRL_C);
|
st->tx[0] = KXSD9_WRITE(KXSD9_REG_CTRL_C);
|
||||||
st->tx[1] = (ret & ~KXSD9_FS_MASK) | i;
|
st->tx[1] = (ret & ~KXSD9_FS_MASK) | i;
|
||||||
|
@ -163,7 +163,7 @@ static int kxsd9_read_raw(struct iio_dev *indio_dev,
|
||||||
break;
|
break;
|
||||||
case IIO_CHAN_INFO_SCALE:
|
case IIO_CHAN_INFO_SCALE:
|
||||||
ret = spi_w8r8(st->us, KXSD9_READ(KXSD9_REG_CTRL_C));
|
ret = spi_w8r8(st->us, KXSD9_READ(KXSD9_REG_CTRL_C));
|
||||||
if (ret)
|
if (ret < 0)
|
||||||
goto error_ret;
|
goto error_ret;
|
||||||
*val2 = kxsd9_micro_scales[ret & KXSD9_FS_MASK];
|
*val2 = kxsd9_micro_scales[ret & KXSD9_FS_MASK];
|
||||||
ret = IIO_VAL_INT_PLUS_MICRO;
|
ret = IIO_VAL_INT_PLUS_MICRO;
|
||||||
|
|
|
@ -396,8 +396,8 @@ static int ad7266_probe(struct spi_device *spi)
|
||||||
|
|
||||||
st = iio_priv(indio_dev);
|
st = iio_priv(indio_dev);
|
||||||
|
|
||||||
st->reg = devm_regulator_get(&spi->dev, "vref");
|
st->reg = devm_regulator_get_optional(&spi->dev, "vref");
|
||||||
if (!IS_ERR_OR_NULL(st->reg)) {
|
if (!IS_ERR(st->reg)) {
|
||||||
ret = regulator_enable(st->reg);
|
ret = regulator_enable(st->reg);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -408,6 +408,9 @@ static int ad7266_probe(struct spi_device *spi)
|
||||||
|
|
||||||
st->vref_mv = ret / 1000;
|
st->vref_mv = ret / 1000;
|
||||||
} else {
|
} else {
|
||||||
|
/* Any other error indicates that the regulator does exist */
|
||||||
|
if (PTR_ERR(st->reg) != -ENODEV)
|
||||||
|
return PTR_ERR(st->reg);
|
||||||
/* Use internal reference */
|
/* Use internal reference */
|
||||||
st->vref_mv = 2500;
|
st->vref_mv = 2500;
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,6 +56,7 @@ static int asus_acpi_get_sensor_info(struct acpi_device *adev,
|
||||||
int i;
|
int i;
|
||||||
acpi_status status;
|
acpi_status status;
|
||||||
union acpi_object *cpm;
|
union acpi_object *cpm;
|
||||||
|
int ret;
|
||||||
|
|
||||||
status = acpi_evaluate_object(adev->handle, "CNF0", NULL, &buffer);
|
status = acpi_evaluate_object(adev->handle, "CNF0", NULL, &buffer);
|
||||||
if (ACPI_FAILURE(status))
|
if (ACPI_FAILURE(status))
|
||||||
|
@ -82,10 +83,10 @@ static int asus_acpi_get_sensor_info(struct acpi_device *adev,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
ret = cpm->package.count;
|
||||||
kfree(buffer.pointer);
|
kfree(buffer.pointer);
|
||||||
|
|
||||||
return cpm->package.count;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int acpi_i2c_check_resource(struct acpi_resource *ares, void *data)
|
static int acpi_i2c_check_resource(struct acpi_resource *ares, void *data)
|
||||||
|
|
|
@ -1107,13 +1107,13 @@ static int __init init_iommu_from_acpi(struct amd_iommu *iommu,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
devid = e->devid;
|
||||||
DUMP_printk(" DEV_ACPI_HID(%s[%s])\t\tdevid: %02x:%02x.%x\n",
|
DUMP_printk(" DEV_ACPI_HID(%s[%s])\t\tdevid: %02x:%02x.%x\n",
|
||||||
hid, uid,
|
hid, uid,
|
||||||
PCI_BUS_NUM(devid),
|
PCI_BUS_NUM(devid),
|
||||||
PCI_SLOT(devid),
|
PCI_SLOT(devid),
|
||||||
PCI_FUNC(devid));
|
PCI_FUNC(devid));
|
||||||
|
|
||||||
devid = e->devid;
|
|
||||||
flags = e->flags;
|
flags = e->flags;
|
||||||
|
|
||||||
ret = add_acpi_hid_device(hid, uid, &devid, false);
|
ret = add_acpi_hid_device(hid, uid, &devid, false);
|
||||||
|
|
|
@ -4607,7 +4607,7 @@ static void free_all_cpu_cached_iovas(unsigned int cpu)
|
||||||
if (!iommu)
|
if (!iommu)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
for (did = 0; did < 0xffff; did++) {
|
for (did = 0; did < cap_ndoms(iommu->cap); did++) {
|
||||||
domain = get_iommu_domain(iommu, did);
|
domain = get_iommu_domain(iommu, did);
|
||||||
|
|
||||||
if (!domain)
|
if (!domain)
|
||||||
|
|
|
@ -420,8 +420,10 @@ retry:
|
||||||
|
|
||||||
/* Try replenishing IOVAs by flushing rcache. */
|
/* Try replenishing IOVAs by flushing rcache. */
|
||||||
flushed_rcache = true;
|
flushed_rcache = true;
|
||||||
|
preempt_disable();
|
||||||
for_each_online_cpu(cpu)
|
for_each_online_cpu(cpu)
|
||||||
free_cpu_cached_iovas(cpu, iovad);
|
free_cpu_cached_iovas(cpu, iovad);
|
||||||
|
preempt_enable();
|
||||||
goto retry;
|
goto retry;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -749,7 +751,7 @@ static bool __iova_rcache_insert(struct iova_domain *iovad,
|
||||||
bool can_insert = false;
|
bool can_insert = false;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
cpu_rcache = this_cpu_ptr(rcache->cpu_rcaches);
|
cpu_rcache = get_cpu_ptr(rcache->cpu_rcaches);
|
||||||
spin_lock_irqsave(&cpu_rcache->lock, flags);
|
spin_lock_irqsave(&cpu_rcache->lock, flags);
|
||||||
|
|
||||||
if (!iova_magazine_full(cpu_rcache->loaded)) {
|
if (!iova_magazine_full(cpu_rcache->loaded)) {
|
||||||
|
@ -779,6 +781,7 @@ static bool __iova_rcache_insert(struct iova_domain *iovad,
|
||||||
iova_magazine_push(cpu_rcache->loaded, iova_pfn);
|
iova_magazine_push(cpu_rcache->loaded, iova_pfn);
|
||||||
|
|
||||||
spin_unlock_irqrestore(&cpu_rcache->lock, flags);
|
spin_unlock_irqrestore(&cpu_rcache->lock, flags);
|
||||||
|
put_cpu_ptr(rcache->cpu_rcaches);
|
||||||
|
|
||||||
if (mag_to_free) {
|
if (mag_to_free) {
|
||||||
iova_magazine_free_pfns(mag_to_free, iovad);
|
iova_magazine_free_pfns(mag_to_free, iovad);
|
||||||
|
@ -812,7 +815,7 @@ static unsigned long __iova_rcache_get(struct iova_rcache *rcache,
|
||||||
bool has_pfn = false;
|
bool has_pfn = false;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
cpu_rcache = this_cpu_ptr(rcache->cpu_rcaches);
|
cpu_rcache = get_cpu_ptr(rcache->cpu_rcaches);
|
||||||
spin_lock_irqsave(&cpu_rcache->lock, flags);
|
spin_lock_irqsave(&cpu_rcache->lock, flags);
|
||||||
|
|
||||||
if (!iova_magazine_empty(cpu_rcache->loaded)) {
|
if (!iova_magazine_empty(cpu_rcache->loaded)) {
|
||||||
|
@ -834,6 +837,7 @@ static unsigned long __iova_rcache_get(struct iova_rcache *rcache,
|
||||||
iova_pfn = iova_magazine_pop(cpu_rcache->loaded, limit_pfn);
|
iova_pfn = iova_magazine_pop(cpu_rcache->loaded, limit_pfn);
|
||||||
|
|
||||||
spin_unlock_irqrestore(&cpu_rcache->lock, flags);
|
spin_unlock_irqrestore(&cpu_rcache->lock, flags);
|
||||||
|
put_cpu_ptr(rcache->cpu_rcaches);
|
||||||
|
|
||||||
return iova_pfn;
|
return iova_pfn;
|
||||||
}
|
}
|
||||||
|
|
|
@ -203,6 +203,7 @@ static int max77620_get_fps_period_reg_value(struct max77620_chip *chip,
|
||||||
break;
|
break;
|
||||||
case MAX77620:
|
case MAX77620:
|
||||||
fps_min_period = MAX77620_FPS_PERIOD_MIN_US;
|
fps_min_period = MAX77620_FPS_PERIOD_MIN_US;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
@ -236,6 +237,7 @@ static int max77620_config_fps(struct max77620_chip *chip,
|
||||||
break;
|
break;
|
||||||
case MAX77620:
|
case MAX77620:
|
||||||
fps_max_period = MAX77620_FPS_PERIOD_MAX_US;
|
fps_max_period = MAX77620_FPS_PERIOD_MAX_US;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
|
@ -101,11 +101,14 @@ enum ad_link_speed_type {
|
||||||
#define MAC_ADDRESS_EQUAL(A, B) \
|
#define MAC_ADDRESS_EQUAL(A, B) \
|
||||||
ether_addr_equal_64bits((const u8 *)A, (const u8 *)B)
|
ether_addr_equal_64bits((const u8 *)A, (const u8 *)B)
|
||||||
|
|
||||||
static struct mac_addr null_mac_addr = { { 0, 0, 0, 0, 0, 0 } };
|
static const u8 null_mac_addr[ETH_ALEN + 2] __long_aligned = {
|
||||||
|
0, 0, 0, 0, 0, 0
|
||||||
|
};
|
||||||
static u16 ad_ticks_per_sec;
|
static u16 ad_ticks_per_sec;
|
||||||
static const int ad_delta_in_ticks = (AD_TIMER_INTERVAL * HZ) / 1000;
|
static const int ad_delta_in_ticks = (AD_TIMER_INTERVAL * HZ) / 1000;
|
||||||
|
|
||||||
static const u8 lacpdu_mcast_addr[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
|
static const u8 lacpdu_mcast_addr[ETH_ALEN + 2] __long_aligned =
|
||||||
|
MULTICAST_LACPDU_ADDR;
|
||||||
|
|
||||||
/* ================= main 802.3ad protocol functions ================== */
|
/* ================= main 802.3ad protocol functions ================== */
|
||||||
static int ad_lacpdu_send(struct port *port);
|
static int ad_lacpdu_send(struct port *port);
|
||||||
|
@ -1739,7 +1742,7 @@ static void ad_clear_agg(struct aggregator *aggregator)
|
||||||
aggregator->is_individual = false;
|
aggregator->is_individual = false;
|
||||||
aggregator->actor_admin_aggregator_key = 0;
|
aggregator->actor_admin_aggregator_key = 0;
|
||||||
aggregator->actor_oper_aggregator_key = 0;
|
aggregator->actor_oper_aggregator_key = 0;
|
||||||
aggregator->partner_system = null_mac_addr;
|
eth_zero_addr(aggregator->partner_system.mac_addr_value);
|
||||||
aggregator->partner_system_priority = 0;
|
aggregator->partner_system_priority = 0;
|
||||||
aggregator->partner_oper_aggregator_key = 0;
|
aggregator->partner_oper_aggregator_key = 0;
|
||||||
aggregator->receive_state = 0;
|
aggregator->receive_state = 0;
|
||||||
|
@ -1761,7 +1764,7 @@ static void ad_initialize_agg(struct aggregator *aggregator)
|
||||||
if (aggregator) {
|
if (aggregator) {
|
||||||
ad_clear_agg(aggregator);
|
ad_clear_agg(aggregator);
|
||||||
|
|
||||||
aggregator->aggregator_mac_address = null_mac_addr;
|
eth_zero_addr(aggregator->aggregator_mac_address.mac_addr_value);
|
||||||
aggregator->aggregator_identifier = 0;
|
aggregator->aggregator_identifier = 0;
|
||||||
aggregator->slave = NULL;
|
aggregator->slave = NULL;
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,13 +42,10 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef __long_aligned
|
static const u8 mac_bcast[ETH_ALEN + 2] __long_aligned = {
|
||||||
#define __long_aligned __attribute__((aligned((sizeof(long)))))
|
|
||||||
#endif
|
|
||||||
static const u8 mac_bcast[ETH_ALEN] __long_aligned = {
|
|
||||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff
|
||||||
};
|
};
|
||||||
static const u8 mac_v6_allmcast[ETH_ALEN] __long_aligned = {
|
static const u8 mac_v6_allmcast[ETH_ALEN + 2] __long_aligned = {
|
||||||
0x33, 0x33, 0x00, 0x00, 0x00, 0x01
|
0x33, 0x33, 0x00, 0x00, 0x00, 0x01
|
||||||
};
|
};
|
||||||
static const int alb_delta_in_ticks = HZ / ALB_TIMER_TICKS_PER_SEC;
|
static const int alb_delta_in_ticks = HZ / ALB_TIMER_TICKS_PER_SEC;
|
||||||
|
|
|
@ -1584,6 +1584,7 @@ int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* check for initial state */
|
/* check for initial state */
|
||||||
|
new_slave->link = BOND_LINK_NOCHANGE;
|
||||||
if (bond->params.miimon) {
|
if (bond->params.miimon) {
|
||||||
if (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS) {
|
if (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS) {
|
||||||
if (bond->params.updelay) {
|
if (bond->params.updelay) {
|
||||||
|
|
|
@ -370,7 +370,7 @@ static void bcm_sysport_get_stats(struct net_device *dev,
|
||||||
else
|
else
|
||||||
p = (char *)priv;
|
p = (char *)priv;
|
||||||
p += s->stat_offset;
|
p += s->stat_offset;
|
||||||
data[i] = *(u32 *)p;
|
data[i] = *(unsigned long *)p;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -36,8 +36,8 @@
|
||||||
#define __T4FW_VERSION_H__
|
#define __T4FW_VERSION_H__
|
||||||
|
|
||||||
#define T4FW_VERSION_MAJOR 0x01
|
#define T4FW_VERSION_MAJOR 0x01
|
||||||
#define T4FW_VERSION_MINOR 0x0E
|
#define T4FW_VERSION_MINOR 0x0F
|
||||||
#define T4FW_VERSION_MICRO 0x04
|
#define T4FW_VERSION_MICRO 0x25
|
||||||
#define T4FW_VERSION_BUILD 0x00
|
#define T4FW_VERSION_BUILD 0x00
|
||||||
|
|
||||||
#define T4FW_MIN_VERSION_MAJOR 0x01
|
#define T4FW_MIN_VERSION_MAJOR 0x01
|
||||||
|
@ -45,8 +45,8 @@
|
||||||
#define T4FW_MIN_VERSION_MICRO 0x00
|
#define T4FW_MIN_VERSION_MICRO 0x00
|
||||||
|
|
||||||
#define T5FW_VERSION_MAJOR 0x01
|
#define T5FW_VERSION_MAJOR 0x01
|
||||||
#define T5FW_VERSION_MINOR 0x0E
|
#define T5FW_VERSION_MINOR 0x0F
|
||||||
#define T5FW_VERSION_MICRO 0x04
|
#define T5FW_VERSION_MICRO 0x25
|
||||||
#define T5FW_VERSION_BUILD 0x00
|
#define T5FW_VERSION_BUILD 0x00
|
||||||
|
|
||||||
#define T5FW_MIN_VERSION_MAJOR 0x00
|
#define T5FW_MIN_VERSION_MAJOR 0x00
|
||||||
|
@ -54,8 +54,8 @@
|
||||||
#define T5FW_MIN_VERSION_MICRO 0x00
|
#define T5FW_MIN_VERSION_MICRO 0x00
|
||||||
|
|
||||||
#define T6FW_VERSION_MAJOR 0x01
|
#define T6FW_VERSION_MAJOR 0x01
|
||||||
#define T6FW_VERSION_MINOR 0x0E
|
#define T6FW_VERSION_MINOR 0x0F
|
||||||
#define T6FW_VERSION_MICRO 0x04
|
#define T6FW_VERSION_MICRO 0x25
|
||||||
#define T6FW_VERSION_BUILD 0x00
|
#define T6FW_VERSION_BUILD 0x00
|
||||||
|
|
||||||
#define T6FW_MIN_VERSION_MAJOR 0x00
|
#define T6FW_MIN_VERSION_MAJOR 0x00
|
||||||
|
|
|
@ -154,16 +154,6 @@ void __ew32(struct e1000_hw *hw, unsigned long reg, u32 val)
|
||||||
writel(val, hw->hw_addr + reg);
|
writel(val, hw->hw_addr + reg);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool e1000e_vlan_used(struct e1000_adapter *adapter)
|
|
||||||
{
|
|
||||||
u16 vid;
|
|
||||||
|
|
||||||
for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
|
|
||||||
return true;
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* e1000_regdump - register printout routine
|
* e1000_regdump - register printout routine
|
||||||
* @hw: pointer to the HW structure
|
* @hw: pointer to the HW structure
|
||||||
|
@ -3453,8 +3443,7 @@ static void e1000e_set_rx_mode(struct net_device *netdev)
|
||||||
|
|
||||||
ew32(RCTL, rctl);
|
ew32(RCTL, rctl);
|
||||||
|
|
||||||
if (netdev->features & NETIF_F_HW_VLAN_CTAG_RX ||
|
if (netdev->features & NETIF_F_HW_VLAN_CTAG_RX)
|
||||||
e1000e_vlan_used(adapter))
|
|
||||||
e1000e_vlan_strip_enable(adapter);
|
e1000e_vlan_strip_enable(adapter);
|
||||||
else
|
else
|
||||||
e1000e_vlan_strip_disable(adapter);
|
e1000e_vlan_strip_disable(adapter);
|
||||||
|
@ -6927,6 +6916,14 @@ static netdev_features_t e1000_fix_features(struct net_device *netdev,
|
||||||
if ((hw->mac.type >= e1000_pch2lan) && (netdev->mtu > ETH_DATA_LEN))
|
if ((hw->mac.type >= e1000_pch2lan) && (netdev->mtu > ETH_DATA_LEN))
|
||||||
features &= ~NETIF_F_RXFCS;
|
features &= ~NETIF_F_RXFCS;
|
||||||
|
|
||||||
|
/* Since there is no support for separate Rx/Tx vlan accel
|
||||||
|
* enable/disable make sure Tx flag is always in same state as Rx.
|
||||||
|
*/
|
||||||
|
if (features & NETIF_F_HW_VLAN_CTAG_RX)
|
||||||
|
features |= NETIF_F_HW_VLAN_CTAG_TX;
|
||||||
|
else
|
||||||
|
features &= ~NETIF_F_HW_VLAN_CTAG_TX;
|
||||||
|
|
||||||
return features;
|
return features;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -85,7 +85,7 @@ static s32 ixgbevf_poll_for_ack(struct ixgbe_hw *hw)
|
||||||
static s32 ixgbevf_read_posted_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size)
|
static s32 ixgbevf_read_posted_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size)
|
||||||
{
|
{
|
||||||
struct ixgbe_mbx_info *mbx = &hw->mbx;
|
struct ixgbe_mbx_info *mbx = &hw->mbx;
|
||||||
s32 ret_val = -IXGBE_ERR_MBX;
|
s32 ret_val = IXGBE_ERR_MBX;
|
||||||
|
|
||||||
if (!mbx->ops.read)
|
if (!mbx->ops.read)
|
||||||
goto out;
|
goto out;
|
||||||
|
@ -111,7 +111,7 @@ out:
|
||||||
static s32 ixgbevf_write_posted_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size)
|
static s32 ixgbevf_write_posted_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size)
|
||||||
{
|
{
|
||||||
struct ixgbe_mbx_info *mbx = &hw->mbx;
|
struct ixgbe_mbx_info *mbx = &hw->mbx;
|
||||||
s32 ret_val = -IXGBE_ERR_MBX;
|
s32 ret_val = IXGBE_ERR_MBX;
|
||||||
|
|
||||||
/* exit if either we can't write or there isn't a defined timeout */
|
/* exit if either we can't write or there isn't a defined timeout */
|
||||||
if (!mbx->ops.write || !mbx->timeout)
|
if (!mbx->ops.write || !mbx->timeout)
|
||||||
|
|
|
@ -3458,6 +3458,8 @@ static int mvneta_open(struct net_device *dev)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
err_free_irq:
|
err_free_irq:
|
||||||
|
unregister_cpu_notifier(&pp->cpu_notifier);
|
||||||
|
on_each_cpu(mvneta_percpu_disable, pp, true);
|
||||||
free_percpu_irq(pp->dev->irq, pp->ports);
|
free_percpu_irq(pp->dev->irq, pp->ports);
|
||||||
err_cleanup_txqs:
|
err_cleanup_txqs:
|
||||||
mvneta_cleanup_txqs(pp);
|
mvneta_cleanup_txqs(pp);
|
||||||
|
|
|
@ -295,6 +295,12 @@ static int mlx5_internal_err_ret_value(struct mlx5_core_dev *dev, u16 op,
|
||||||
case MLX5_CMD_OP_DESTROY_FLOW_GROUP:
|
case MLX5_CMD_OP_DESTROY_FLOW_GROUP:
|
||||||
case MLX5_CMD_OP_DELETE_FLOW_TABLE_ENTRY:
|
case MLX5_CMD_OP_DELETE_FLOW_TABLE_ENTRY:
|
||||||
case MLX5_CMD_OP_DEALLOC_FLOW_COUNTER:
|
case MLX5_CMD_OP_DEALLOC_FLOW_COUNTER:
|
||||||
|
case MLX5_CMD_OP_2ERR_QP:
|
||||||
|
case MLX5_CMD_OP_2RST_QP:
|
||||||
|
case MLX5_CMD_OP_MODIFY_NIC_VPORT_CONTEXT:
|
||||||
|
case MLX5_CMD_OP_MODIFY_FLOW_TABLE:
|
||||||
|
case MLX5_CMD_OP_SET_FLOW_TABLE_ENTRY:
|
||||||
|
case MLX5_CMD_OP_SET_FLOW_TABLE_ROOT:
|
||||||
return MLX5_CMD_STAT_OK;
|
return MLX5_CMD_STAT_OK;
|
||||||
|
|
||||||
case MLX5_CMD_OP_QUERY_HCA_CAP:
|
case MLX5_CMD_OP_QUERY_HCA_CAP:
|
||||||
|
@ -321,8 +327,6 @@ static int mlx5_internal_err_ret_value(struct mlx5_core_dev *dev, u16 op,
|
||||||
case MLX5_CMD_OP_RTR2RTS_QP:
|
case MLX5_CMD_OP_RTR2RTS_QP:
|
||||||
case MLX5_CMD_OP_RTS2RTS_QP:
|
case MLX5_CMD_OP_RTS2RTS_QP:
|
||||||
case MLX5_CMD_OP_SQERR2RTS_QP:
|
case MLX5_CMD_OP_SQERR2RTS_QP:
|
||||||
case MLX5_CMD_OP_2ERR_QP:
|
|
||||||
case MLX5_CMD_OP_2RST_QP:
|
|
||||||
case MLX5_CMD_OP_QUERY_QP:
|
case MLX5_CMD_OP_QUERY_QP:
|
||||||
case MLX5_CMD_OP_SQD_RTS_QP:
|
case MLX5_CMD_OP_SQD_RTS_QP:
|
||||||
case MLX5_CMD_OP_INIT2INIT_QP:
|
case MLX5_CMD_OP_INIT2INIT_QP:
|
||||||
|
@ -342,7 +346,6 @@ static int mlx5_internal_err_ret_value(struct mlx5_core_dev *dev, u16 op,
|
||||||
case MLX5_CMD_OP_QUERY_ESW_VPORT_CONTEXT:
|
case MLX5_CMD_OP_QUERY_ESW_VPORT_CONTEXT:
|
||||||
case MLX5_CMD_OP_MODIFY_ESW_VPORT_CONTEXT:
|
case MLX5_CMD_OP_MODIFY_ESW_VPORT_CONTEXT:
|
||||||
case MLX5_CMD_OP_QUERY_NIC_VPORT_CONTEXT:
|
case MLX5_CMD_OP_QUERY_NIC_VPORT_CONTEXT:
|
||||||
case MLX5_CMD_OP_MODIFY_NIC_VPORT_CONTEXT:
|
|
||||||
case MLX5_CMD_OP_QUERY_ROCE_ADDRESS:
|
case MLX5_CMD_OP_QUERY_ROCE_ADDRESS:
|
||||||
case MLX5_CMD_OP_SET_ROCE_ADDRESS:
|
case MLX5_CMD_OP_SET_ROCE_ADDRESS:
|
||||||
case MLX5_CMD_OP_QUERY_HCA_VPORT_CONTEXT:
|
case MLX5_CMD_OP_QUERY_HCA_VPORT_CONTEXT:
|
||||||
|
@ -390,11 +393,12 @@ static int mlx5_internal_err_ret_value(struct mlx5_core_dev *dev, u16 op,
|
||||||
case MLX5_CMD_OP_CREATE_RQT:
|
case MLX5_CMD_OP_CREATE_RQT:
|
||||||
case MLX5_CMD_OP_MODIFY_RQT:
|
case MLX5_CMD_OP_MODIFY_RQT:
|
||||||
case MLX5_CMD_OP_QUERY_RQT:
|
case MLX5_CMD_OP_QUERY_RQT:
|
||||||
|
|
||||||
case MLX5_CMD_OP_CREATE_FLOW_TABLE:
|
case MLX5_CMD_OP_CREATE_FLOW_TABLE:
|
||||||
case MLX5_CMD_OP_QUERY_FLOW_TABLE:
|
case MLX5_CMD_OP_QUERY_FLOW_TABLE:
|
||||||
case MLX5_CMD_OP_CREATE_FLOW_GROUP:
|
case MLX5_CMD_OP_CREATE_FLOW_GROUP:
|
||||||
case MLX5_CMD_OP_QUERY_FLOW_GROUP:
|
case MLX5_CMD_OP_QUERY_FLOW_GROUP:
|
||||||
case MLX5_CMD_OP_SET_FLOW_TABLE_ENTRY:
|
|
||||||
case MLX5_CMD_OP_QUERY_FLOW_TABLE_ENTRY:
|
case MLX5_CMD_OP_QUERY_FLOW_TABLE_ENTRY:
|
||||||
case MLX5_CMD_OP_ALLOC_FLOW_COUNTER:
|
case MLX5_CMD_OP_ALLOC_FLOW_COUNTER:
|
||||||
case MLX5_CMD_OP_QUERY_FLOW_COUNTER:
|
case MLX5_CMD_OP_QUERY_FLOW_COUNTER:
|
||||||
|
@ -602,11 +606,36 @@ static void dump_command(struct mlx5_core_dev *dev,
|
||||||
pr_debug("\n");
|
pr_debug("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static u16 msg_to_opcode(struct mlx5_cmd_msg *in)
|
||||||
|
{
|
||||||
|
struct mlx5_inbox_hdr *hdr = (struct mlx5_inbox_hdr *)(in->first.data);
|
||||||
|
|
||||||
|
return be16_to_cpu(hdr->opcode);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void cb_timeout_handler(struct work_struct *work)
|
||||||
|
{
|
||||||
|
struct delayed_work *dwork = container_of(work, struct delayed_work,
|
||||||
|
work);
|
||||||
|
struct mlx5_cmd_work_ent *ent = container_of(dwork,
|
||||||
|
struct mlx5_cmd_work_ent,
|
||||||
|
cb_timeout_work);
|
||||||
|
struct mlx5_core_dev *dev = container_of(ent->cmd, struct mlx5_core_dev,
|
||||||
|
cmd);
|
||||||
|
|
||||||
|
ent->ret = -ETIMEDOUT;
|
||||||
|
mlx5_core_warn(dev, "%s(0x%x) timeout. Will cause a leak of a command resource\n",
|
||||||
|
mlx5_command_str(msg_to_opcode(ent->in)),
|
||||||
|
msg_to_opcode(ent->in));
|
||||||
|
mlx5_cmd_comp_handler(dev, 1UL << ent->idx);
|
||||||
|
}
|
||||||
|
|
||||||
static void cmd_work_handler(struct work_struct *work)
|
static void cmd_work_handler(struct work_struct *work)
|
||||||
{
|
{
|
||||||
struct mlx5_cmd_work_ent *ent = container_of(work, struct mlx5_cmd_work_ent, work);
|
struct mlx5_cmd_work_ent *ent = container_of(work, struct mlx5_cmd_work_ent, work);
|
||||||
struct mlx5_cmd *cmd = ent->cmd;
|
struct mlx5_cmd *cmd = ent->cmd;
|
||||||
struct mlx5_core_dev *dev = container_of(cmd, struct mlx5_core_dev, cmd);
|
struct mlx5_core_dev *dev = container_of(cmd, struct mlx5_core_dev, cmd);
|
||||||
|
unsigned long cb_timeout = msecs_to_jiffies(MLX5_CMD_TIMEOUT_MSEC);
|
||||||
struct mlx5_cmd_layout *lay;
|
struct mlx5_cmd_layout *lay;
|
||||||
struct semaphore *sem;
|
struct semaphore *sem;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
@ -647,6 +676,9 @@ static void cmd_work_handler(struct work_struct *work)
|
||||||
dump_command(dev, ent, 1);
|
dump_command(dev, ent, 1);
|
||||||
ent->ts1 = ktime_get_ns();
|
ent->ts1 = ktime_get_ns();
|
||||||
|
|
||||||
|
if (ent->callback)
|
||||||
|
schedule_delayed_work(&ent->cb_timeout_work, cb_timeout);
|
||||||
|
|
||||||
/* ring doorbell after the descriptor is valid */
|
/* ring doorbell after the descriptor is valid */
|
||||||
mlx5_core_dbg(dev, "writing 0x%x to command doorbell\n", 1 << ent->idx);
|
mlx5_core_dbg(dev, "writing 0x%x to command doorbell\n", 1 << ent->idx);
|
||||||
wmb();
|
wmb();
|
||||||
|
@ -691,13 +723,6 @@ static const char *deliv_status_to_str(u8 status)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static u16 msg_to_opcode(struct mlx5_cmd_msg *in)
|
|
||||||
{
|
|
||||||
struct mlx5_inbox_hdr *hdr = (struct mlx5_inbox_hdr *)(in->first.data);
|
|
||||||
|
|
||||||
return be16_to_cpu(hdr->opcode);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int wait_func(struct mlx5_core_dev *dev, struct mlx5_cmd_work_ent *ent)
|
static int wait_func(struct mlx5_core_dev *dev, struct mlx5_cmd_work_ent *ent)
|
||||||
{
|
{
|
||||||
unsigned long timeout = msecs_to_jiffies(MLX5_CMD_TIMEOUT_MSEC);
|
unsigned long timeout = msecs_to_jiffies(MLX5_CMD_TIMEOUT_MSEC);
|
||||||
|
@ -706,13 +731,13 @@ static int wait_func(struct mlx5_core_dev *dev, struct mlx5_cmd_work_ent *ent)
|
||||||
|
|
||||||
if (cmd->mode == CMD_MODE_POLLING) {
|
if (cmd->mode == CMD_MODE_POLLING) {
|
||||||
wait_for_completion(&ent->done);
|
wait_for_completion(&ent->done);
|
||||||
err = ent->ret;
|
} else if (!wait_for_completion_timeout(&ent->done, timeout)) {
|
||||||
} else {
|
ent->ret = -ETIMEDOUT;
|
||||||
if (!wait_for_completion_timeout(&ent->done, timeout))
|
mlx5_cmd_comp_handler(dev, 1UL << ent->idx);
|
||||||
err = -ETIMEDOUT;
|
|
||||||
else
|
|
||||||
err = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
err = ent->ret;
|
||||||
|
|
||||||
if (err == -ETIMEDOUT) {
|
if (err == -ETIMEDOUT) {
|
||||||
mlx5_core_warn(dev, "%s(0x%x) timeout. Will cause a leak of a command resource\n",
|
mlx5_core_warn(dev, "%s(0x%x) timeout. Will cause a leak of a command resource\n",
|
||||||
mlx5_command_str(msg_to_opcode(ent->in)),
|
mlx5_command_str(msg_to_opcode(ent->in)),
|
||||||
|
@ -761,6 +786,7 @@ static int mlx5_cmd_invoke(struct mlx5_core_dev *dev, struct mlx5_cmd_msg *in,
|
||||||
if (!callback)
|
if (!callback)
|
||||||
init_completion(&ent->done);
|
init_completion(&ent->done);
|
||||||
|
|
||||||
|
INIT_DELAYED_WORK(&ent->cb_timeout_work, cb_timeout_handler);
|
||||||
INIT_WORK(&ent->work, cmd_work_handler);
|
INIT_WORK(&ent->work, cmd_work_handler);
|
||||||
if (page_queue) {
|
if (page_queue) {
|
||||||
cmd_work_handler(&ent->work);
|
cmd_work_handler(&ent->work);
|
||||||
|
@ -770,28 +796,26 @@ static int mlx5_cmd_invoke(struct mlx5_core_dev *dev, struct mlx5_cmd_msg *in,
|
||||||
goto out_free;
|
goto out_free;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!callback) {
|
if (callback)
|
||||||
err = wait_func(dev, ent);
|
goto out;
|
||||||
if (err == -ETIMEDOUT)
|
|
||||||
goto out;
|
|
||||||
|
|
||||||
ds = ent->ts2 - ent->ts1;
|
err = wait_func(dev, ent);
|
||||||
op = be16_to_cpu(((struct mlx5_inbox_hdr *)in->first.data)->opcode);
|
if (err == -ETIMEDOUT)
|
||||||
if (op < ARRAY_SIZE(cmd->stats)) {
|
goto out_free;
|
||||||
stats = &cmd->stats[op];
|
|
||||||
spin_lock_irq(&stats->lock);
|
ds = ent->ts2 - ent->ts1;
|
||||||
stats->sum += ds;
|
op = be16_to_cpu(((struct mlx5_inbox_hdr *)in->first.data)->opcode);
|
||||||
++stats->n;
|
if (op < ARRAY_SIZE(cmd->stats)) {
|
||||||
spin_unlock_irq(&stats->lock);
|
stats = &cmd->stats[op];
|
||||||
}
|
spin_lock_irq(&stats->lock);
|
||||||
mlx5_core_dbg_mask(dev, 1 << MLX5_CMD_TIME,
|
stats->sum += ds;
|
||||||
"fw exec time for %s is %lld nsec\n",
|
++stats->n;
|
||||||
mlx5_command_str(op), ds);
|
spin_unlock_irq(&stats->lock);
|
||||||
*status = ent->status;
|
|
||||||
free_cmd(ent);
|
|
||||||
}
|
}
|
||||||
|
mlx5_core_dbg_mask(dev, 1 << MLX5_CMD_TIME,
|
||||||
return err;
|
"fw exec time for %s is %lld nsec\n",
|
||||||
|
mlx5_command_str(op), ds);
|
||||||
|
*status = ent->status;
|
||||||
|
|
||||||
out_free:
|
out_free:
|
||||||
free_cmd(ent);
|
free_cmd(ent);
|
||||||
|
@ -1181,41 +1205,30 @@ err_dbg:
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
void mlx5_cmd_use_events(struct mlx5_core_dev *dev)
|
static void mlx5_cmd_change_mod(struct mlx5_core_dev *dev, int mode)
|
||||||
{
|
{
|
||||||
struct mlx5_cmd *cmd = &dev->cmd;
|
struct mlx5_cmd *cmd = &dev->cmd;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < cmd->max_reg_cmds; i++)
|
for (i = 0; i < cmd->max_reg_cmds; i++)
|
||||||
down(&cmd->sem);
|
down(&cmd->sem);
|
||||||
|
|
||||||
down(&cmd->pages_sem);
|
down(&cmd->pages_sem);
|
||||||
|
|
||||||
flush_workqueue(cmd->wq);
|
cmd->mode = mode;
|
||||||
|
|
||||||
cmd->mode = CMD_MODE_EVENTS;
|
|
||||||
|
|
||||||
up(&cmd->pages_sem);
|
up(&cmd->pages_sem);
|
||||||
for (i = 0; i < cmd->max_reg_cmds; i++)
|
for (i = 0; i < cmd->max_reg_cmds; i++)
|
||||||
up(&cmd->sem);
|
up(&cmd->sem);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void mlx5_cmd_use_events(struct mlx5_core_dev *dev)
|
||||||
|
{
|
||||||
|
mlx5_cmd_change_mod(dev, CMD_MODE_EVENTS);
|
||||||
|
}
|
||||||
|
|
||||||
void mlx5_cmd_use_polling(struct mlx5_core_dev *dev)
|
void mlx5_cmd_use_polling(struct mlx5_core_dev *dev)
|
||||||
{
|
{
|
||||||
struct mlx5_cmd *cmd = &dev->cmd;
|
mlx5_cmd_change_mod(dev, CMD_MODE_POLLING);
|
||||||
int i;
|
|
||||||
|
|
||||||
for (i = 0; i < cmd->max_reg_cmds; i++)
|
|
||||||
down(&cmd->sem);
|
|
||||||
|
|
||||||
down(&cmd->pages_sem);
|
|
||||||
|
|
||||||
flush_workqueue(cmd->wq);
|
|
||||||
cmd->mode = CMD_MODE_POLLING;
|
|
||||||
|
|
||||||
up(&cmd->pages_sem);
|
|
||||||
for (i = 0; i < cmd->max_reg_cmds; i++)
|
|
||||||
up(&cmd->sem);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void free_msg(struct mlx5_core_dev *dev, struct mlx5_cmd_msg *msg)
|
static void free_msg(struct mlx5_core_dev *dev, struct mlx5_cmd_msg *msg)
|
||||||
|
@ -1251,6 +1264,8 @@ void mlx5_cmd_comp_handler(struct mlx5_core_dev *dev, u64 vec)
|
||||||
struct semaphore *sem;
|
struct semaphore *sem;
|
||||||
|
|
||||||
ent = cmd->ent_arr[i];
|
ent = cmd->ent_arr[i];
|
||||||
|
if (ent->callback)
|
||||||
|
cancel_delayed_work(&ent->cb_timeout_work);
|
||||||
if (ent->page_queue)
|
if (ent->page_queue)
|
||||||
sem = &cmd->pages_sem;
|
sem = &cmd->pages_sem;
|
||||||
else
|
else
|
||||||
|
|
|
@ -164,7 +164,6 @@ enum mlx5e_priv_flag {
|
||||||
|
|
||||||
#ifdef CONFIG_MLX5_CORE_EN_DCB
|
#ifdef CONFIG_MLX5_CORE_EN_DCB
|
||||||
#define MLX5E_MAX_BW_ALLOC 100 /* Max percentage of BW allocation */
|
#define MLX5E_MAX_BW_ALLOC 100 /* Max percentage of BW allocation */
|
||||||
#define MLX5E_MIN_BW_ALLOC 1 /* Min percentage of BW allocation */
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct mlx5e_cq_moder {
|
struct mlx5e_cq_moder {
|
||||||
|
@ -215,6 +214,7 @@ struct mlx5e_tstamp {
|
||||||
enum {
|
enum {
|
||||||
MLX5E_RQ_STATE_POST_WQES_ENABLE,
|
MLX5E_RQ_STATE_POST_WQES_ENABLE,
|
||||||
MLX5E_RQ_STATE_UMR_WQE_IN_PROGRESS,
|
MLX5E_RQ_STATE_UMR_WQE_IN_PROGRESS,
|
||||||
|
MLX5E_RQ_STATE_FLUSH_TIMEOUT,
|
||||||
MLX5E_RQ_STATE_AM,
|
MLX5E_RQ_STATE_AM,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -246,6 +246,8 @@ typedef void (*mlx5e_fp_handle_rx_cqe)(struct mlx5e_rq *rq,
|
||||||
typedef int (*mlx5e_fp_alloc_wqe)(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe,
|
typedef int (*mlx5e_fp_alloc_wqe)(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe,
|
||||||
u16 ix);
|
u16 ix);
|
||||||
|
|
||||||
|
typedef void (*mlx5e_fp_dealloc_wqe)(struct mlx5e_rq *rq, u16 ix);
|
||||||
|
|
||||||
struct mlx5e_dma_info {
|
struct mlx5e_dma_info {
|
||||||
struct page *page;
|
struct page *page;
|
||||||
dma_addr_t addr;
|
dma_addr_t addr;
|
||||||
|
@ -291,6 +293,7 @@ struct mlx5e_rq {
|
||||||
struct mlx5e_cq cq;
|
struct mlx5e_cq cq;
|
||||||
mlx5e_fp_handle_rx_cqe handle_rx_cqe;
|
mlx5e_fp_handle_rx_cqe handle_rx_cqe;
|
||||||
mlx5e_fp_alloc_wqe alloc_wqe;
|
mlx5e_fp_alloc_wqe alloc_wqe;
|
||||||
|
mlx5e_fp_dealloc_wqe dealloc_wqe;
|
||||||
|
|
||||||
unsigned long state;
|
unsigned long state;
|
||||||
int ix;
|
int ix;
|
||||||
|
@ -357,6 +360,7 @@ struct mlx5e_sq_dma {
|
||||||
enum {
|
enum {
|
||||||
MLX5E_SQ_STATE_WAKE_TXQ_ENABLE,
|
MLX5E_SQ_STATE_WAKE_TXQ_ENABLE,
|
||||||
MLX5E_SQ_STATE_BF_ENABLE,
|
MLX5E_SQ_STATE_BF_ENABLE,
|
||||||
|
MLX5E_SQ_STATE_TX_TIMEOUT,
|
||||||
};
|
};
|
||||||
|
|
||||||
struct mlx5e_ico_wqe_info {
|
struct mlx5e_ico_wqe_info {
|
||||||
|
@ -626,6 +630,7 @@ struct mlx5e_priv {
|
||||||
struct workqueue_struct *wq;
|
struct workqueue_struct *wq;
|
||||||
struct work_struct update_carrier_work;
|
struct work_struct update_carrier_work;
|
||||||
struct work_struct set_rx_mode_work;
|
struct work_struct set_rx_mode_work;
|
||||||
|
struct work_struct tx_timeout_work;
|
||||||
struct delayed_work update_stats_work;
|
struct delayed_work update_stats_work;
|
||||||
|
|
||||||
u32 pflags;
|
u32 pflags;
|
||||||
|
@ -684,12 +689,16 @@ void mlx5e_cq_error_event(struct mlx5_core_cq *mcq, enum mlx5_event event);
|
||||||
int mlx5e_napi_poll(struct napi_struct *napi, int budget);
|
int mlx5e_napi_poll(struct napi_struct *napi, int budget);
|
||||||
bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq, int napi_budget);
|
bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq, int napi_budget);
|
||||||
int mlx5e_poll_rx_cq(struct mlx5e_cq *cq, int budget);
|
int mlx5e_poll_rx_cq(struct mlx5e_cq *cq, int budget);
|
||||||
|
void mlx5e_free_tx_descs(struct mlx5e_sq *sq);
|
||||||
|
void mlx5e_free_rx_descs(struct mlx5e_rq *rq);
|
||||||
|
|
||||||
void mlx5e_handle_rx_cqe(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
|
void mlx5e_handle_rx_cqe(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
|
||||||
void mlx5e_handle_rx_cqe_mpwrq(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
|
void mlx5e_handle_rx_cqe_mpwrq(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
|
||||||
bool mlx5e_post_rx_wqes(struct mlx5e_rq *rq);
|
bool mlx5e_post_rx_wqes(struct mlx5e_rq *rq);
|
||||||
int mlx5e_alloc_rx_wqe(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe, u16 ix);
|
int mlx5e_alloc_rx_wqe(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe, u16 ix);
|
||||||
int mlx5e_alloc_rx_mpwqe(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe, u16 ix);
|
int mlx5e_alloc_rx_mpwqe(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe, u16 ix);
|
||||||
|
void mlx5e_dealloc_rx_wqe(struct mlx5e_rq *rq, u16 ix);
|
||||||
|
void mlx5e_dealloc_rx_mpwqe(struct mlx5e_rq *rq, u16 ix);
|
||||||
void mlx5e_post_rx_fragmented_mpwqe(struct mlx5e_rq *rq);
|
void mlx5e_post_rx_fragmented_mpwqe(struct mlx5e_rq *rq);
|
||||||
void mlx5e_complete_rx_linear_mpwqe(struct mlx5e_rq *rq,
|
void mlx5e_complete_rx_linear_mpwqe(struct mlx5e_rq *rq,
|
||||||
struct mlx5_cqe64 *cqe,
|
struct mlx5_cqe64 *cqe,
|
||||||
|
|
|
@ -96,7 +96,7 @@ static void mlx5e_build_tc_tx_bw(struct ieee_ets *ets, u8 *tc_tx_bw,
|
||||||
tc_tx_bw[i] = MLX5E_MAX_BW_ALLOC;
|
tc_tx_bw[i] = MLX5E_MAX_BW_ALLOC;
|
||||||
break;
|
break;
|
||||||
case IEEE_8021QAZ_TSA_ETS:
|
case IEEE_8021QAZ_TSA_ETS:
|
||||||
tc_tx_bw[i] = ets->tc_tx_bw[i] ?: MLX5E_MIN_BW_ALLOC;
|
tc_tx_bw[i] = ets->tc_tx_bw[i];
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -140,8 +140,12 @@ static int mlx5e_dbcnl_validate_ets(struct ieee_ets *ets)
|
||||||
|
|
||||||
/* Validate Bandwidth Sum */
|
/* Validate Bandwidth Sum */
|
||||||
for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++) {
|
for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++) {
|
||||||
if (ets->tc_tsa[i] == IEEE_8021QAZ_TSA_ETS)
|
if (ets->tc_tsa[i] == IEEE_8021QAZ_TSA_ETS) {
|
||||||
|
if (!ets->tc_tx_bw[i])
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
bw_sum += ets->tc_tx_bw[i];
|
bw_sum += ets->tc_tx_bw[i];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bw_sum != 0 && bw_sum != 100)
|
if (bw_sum != 0 && bw_sum != 100)
|
||||||
|
|
|
@ -39,6 +39,13 @@
|
||||||
#include "eswitch.h"
|
#include "eswitch.h"
|
||||||
#include "vxlan.h"
|
#include "vxlan.h"
|
||||||
|
|
||||||
|
enum {
|
||||||
|
MLX5_EN_QP_FLUSH_TIMEOUT_MS = 5000,
|
||||||
|
MLX5_EN_QP_FLUSH_MSLEEP_QUANT = 20,
|
||||||
|
MLX5_EN_QP_FLUSH_MAX_ITER = MLX5_EN_QP_FLUSH_TIMEOUT_MS /
|
||||||
|
MLX5_EN_QP_FLUSH_MSLEEP_QUANT,
|
||||||
|
};
|
||||||
|
|
||||||
struct mlx5e_rq_param {
|
struct mlx5e_rq_param {
|
||||||
u32 rqc[MLX5_ST_SZ_DW(rqc)];
|
u32 rqc[MLX5_ST_SZ_DW(rqc)];
|
||||||
struct mlx5_wq_param wq;
|
struct mlx5_wq_param wq;
|
||||||
|
@ -76,10 +83,13 @@ static void mlx5e_update_carrier(struct mlx5e_priv *priv)
|
||||||
port_state = mlx5_query_vport_state(mdev,
|
port_state = mlx5_query_vport_state(mdev,
|
||||||
MLX5_QUERY_VPORT_STATE_IN_OP_MOD_VNIC_VPORT, 0);
|
MLX5_QUERY_VPORT_STATE_IN_OP_MOD_VNIC_VPORT, 0);
|
||||||
|
|
||||||
if (port_state == VPORT_STATE_UP)
|
if (port_state == VPORT_STATE_UP) {
|
||||||
|
netdev_info(priv->netdev, "Link up\n");
|
||||||
netif_carrier_on(priv->netdev);
|
netif_carrier_on(priv->netdev);
|
||||||
else
|
} else {
|
||||||
|
netdev_info(priv->netdev, "Link down\n");
|
||||||
netif_carrier_off(priv->netdev);
|
netif_carrier_off(priv->netdev);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mlx5e_update_carrier_work(struct work_struct *work)
|
static void mlx5e_update_carrier_work(struct work_struct *work)
|
||||||
|
@ -93,6 +103,26 @@ static void mlx5e_update_carrier_work(struct work_struct *work)
|
||||||
mutex_unlock(&priv->state_lock);
|
mutex_unlock(&priv->state_lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void mlx5e_tx_timeout_work(struct work_struct *work)
|
||||||
|
{
|
||||||
|
struct mlx5e_priv *priv = container_of(work, struct mlx5e_priv,
|
||||||
|
tx_timeout_work);
|
||||||
|
int err;
|
||||||
|
|
||||||
|
rtnl_lock();
|
||||||
|
mutex_lock(&priv->state_lock);
|
||||||
|
if (!test_bit(MLX5E_STATE_OPENED, &priv->state))
|
||||||
|
goto unlock;
|
||||||
|
mlx5e_close_locked(priv->netdev);
|
||||||
|
err = mlx5e_open_locked(priv->netdev);
|
||||||
|
if (err)
|
||||||
|
netdev_err(priv->netdev, "mlx5e_open_locked failed recovering from a tx_timeout, err(%d).\n",
|
||||||
|
err);
|
||||||
|
unlock:
|
||||||
|
mutex_unlock(&priv->state_lock);
|
||||||
|
rtnl_unlock();
|
||||||
|
}
|
||||||
|
|
||||||
static void mlx5e_update_sw_counters(struct mlx5e_priv *priv)
|
static void mlx5e_update_sw_counters(struct mlx5e_priv *priv)
|
||||||
{
|
{
|
||||||
struct mlx5e_sw_stats *s = &priv->stats.sw;
|
struct mlx5e_sw_stats *s = &priv->stats.sw;
|
||||||
|
@ -307,6 +337,7 @@ static int mlx5e_create_rq(struct mlx5e_channel *c,
|
||||||
}
|
}
|
||||||
rq->handle_rx_cqe = mlx5e_handle_rx_cqe_mpwrq;
|
rq->handle_rx_cqe = mlx5e_handle_rx_cqe_mpwrq;
|
||||||
rq->alloc_wqe = mlx5e_alloc_rx_mpwqe;
|
rq->alloc_wqe = mlx5e_alloc_rx_mpwqe;
|
||||||
|
rq->dealloc_wqe = mlx5e_dealloc_rx_mpwqe;
|
||||||
|
|
||||||
rq->mpwqe_stride_sz = BIT(priv->params.mpwqe_log_stride_sz);
|
rq->mpwqe_stride_sz = BIT(priv->params.mpwqe_log_stride_sz);
|
||||||
rq->mpwqe_num_strides = BIT(priv->params.mpwqe_log_num_strides);
|
rq->mpwqe_num_strides = BIT(priv->params.mpwqe_log_num_strides);
|
||||||
|
@ -322,6 +353,7 @@ static int mlx5e_create_rq(struct mlx5e_channel *c,
|
||||||
}
|
}
|
||||||
rq->handle_rx_cqe = mlx5e_handle_rx_cqe;
|
rq->handle_rx_cqe = mlx5e_handle_rx_cqe;
|
||||||
rq->alloc_wqe = mlx5e_alloc_rx_wqe;
|
rq->alloc_wqe = mlx5e_alloc_rx_wqe;
|
||||||
|
rq->dealloc_wqe = mlx5e_dealloc_rx_wqe;
|
||||||
|
|
||||||
rq->wqe_sz = (priv->params.lro_en) ?
|
rq->wqe_sz = (priv->params.lro_en) ?
|
||||||
priv->params.lro_wqe_sz :
|
priv->params.lro_wqe_sz :
|
||||||
|
@ -533,12 +565,19 @@ err_destroy_rq:
|
||||||
|
|
||||||
static void mlx5e_close_rq(struct mlx5e_rq *rq)
|
static void mlx5e_close_rq(struct mlx5e_rq *rq)
|
||||||
{
|
{
|
||||||
|
int tout = 0;
|
||||||
|
int err;
|
||||||
|
|
||||||
clear_bit(MLX5E_RQ_STATE_POST_WQES_ENABLE, &rq->state);
|
clear_bit(MLX5E_RQ_STATE_POST_WQES_ENABLE, &rq->state);
|
||||||
napi_synchronize(&rq->channel->napi); /* prevent mlx5e_post_rx_wqes */
|
napi_synchronize(&rq->channel->napi); /* prevent mlx5e_post_rx_wqes */
|
||||||
|
|
||||||
mlx5e_modify_rq_state(rq, MLX5_RQC_STATE_RDY, MLX5_RQC_STATE_ERR);
|
err = mlx5e_modify_rq_state(rq, MLX5_RQC_STATE_RDY, MLX5_RQC_STATE_ERR);
|
||||||
while (!mlx5_wq_ll_is_empty(&rq->wq))
|
while (!mlx5_wq_ll_is_empty(&rq->wq) && !err &&
|
||||||
msleep(20);
|
tout++ < MLX5_EN_QP_FLUSH_MAX_ITER)
|
||||||
|
msleep(MLX5_EN_QP_FLUSH_MSLEEP_QUANT);
|
||||||
|
|
||||||
|
if (err || tout == MLX5_EN_QP_FLUSH_MAX_ITER)
|
||||||
|
set_bit(MLX5E_RQ_STATE_FLUSH_TIMEOUT, &rq->state);
|
||||||
|
|
||||||
/* avoid destroying rq before mlx5e_poll_rx_cq() is done with it */
|
/* avoid destroying rq before mlx5e_poll_rx_cq() is done with it */
|
||||||
napi_synchronize(&rq->channel->napi);
|
napi_synchronize(&rq->channel->napi);
|
||||||
|
@ -546,6 +585,7 @@ static void mlx5e_close_rq(struct mlx5e_rq *rq)
|
||||||
cancel_work_sync(&rq->am.work);
|
cancel_work_sync(&rq->am.work);
|
||||||
|
|
||||||
mlx5e_disable_rq(rq);
|
mlx5e_disable_rq(rq);
|
||||||
|
mlx5e_free_rx_descs(rq);
|
||||||
mlx5e_destroy_rq(rq);
|
mlx5e_destroy_rq(rq);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -800,6 +840,9 @@ static inline void netif_tx_disable_queue(struct netdev_queue *txq)
|
||||||
|
|
||||||
static void mlx5e_close_sq(struct mlx5e_sq *sq)
|
static void mlx5e_close_sq(struct mlx5e_sq *sq)
|
||||||
{
|
{
|
||||||
|
int tout = 0;
|
||||||
|
int err;
|
||||||
|
|
||||||
if (sq->txq) {
|
if (sq->txq) {
|
||||||
clear_bit(MLX5E_SQ_STATE_WAKE_TXQ_ENABLE, &sq->state);
|
clear_bit(MLX5E_SQ_STATE_WAKE_TXQ_ENABLE, &sq->state);
|
||||||
/* prevent netif_tx_wake_queue */
|
/* prevent netif_tx_wake_queue */
|
||||||
|
@ -810,16 +853,24 @@ static void mlx5e_close_sq(struct mlx5e_sq *sq)
|
||||||
if (mlx5e_sq_has_room_for(sq, 1))
|
if (mlx5e_sq_has_room_for(sq, 1))
|
||||||
mlx5e_send_nop(sq, true);
|
mlx5e_send_nop(sq, true);
|
||||||
|
|
||||||
mlx5e_modify_sq(sq, MLX5_SQC_STATE_RDY, MLX5_SQC_STATE_ERR,
|
err = mlx5e_modify_sq(sq, MLX5_SQC_STATE_RDY,
|
||||||
false, 0);
|
MLX5_SQC_STATE_ERR, false, 0);
|
||||||
|
if (err)
|
||||||
|
set_bit(MLX5E_SQ_STATE_TX_TIMEOUT, &sq->state);
|
||||||
}
|
}
|
||||||
|
|
||||||
while (sq->cc != sq->pc) /* wait till sq is empty */
|
/* wait till sq is empty, unless a TX timeout occurred on this SQ */
|
||||||
msleep(20);
|
while (sq->cc != sq->pc &&
|
||||||
|
!test_bit(MLX5E_SQ_STATE_TX_TIMEOUT, &sq->state)) {
|
||||||
|
msleep(MLX5_EN_QP_FLUSH_MSLEEP_QUANT);
|
||||||
|
if (tout++ > MLX5_EN_QP_FLUSH_MAX_ITER)
|
||||||
|
set_bit(MLX5E_SQ_STATE_TX_TIMEOUT, &sq->state);
|
||||||
|
}
|
||||||
|
|
||||||
/* avoid destroying sq before mlx5e_poll_tx_cq() is done with it */
|
/* avoid destroying sq before mlx5e_poll_tx_cq() is done with it */
|
||||||
napi_synchronize(&sq->channel->napi);
|
napi_synchronize(&sq->channel->napi);
|
||||||
|
|
||||||
|
mlx5e_free_tx_descs(sq);
|
||||||
mlx5e_disable_sq(sq);
|
mlx5e_disable_sq(sq);
|
||||||
mlx5e_destroy_sq(sq);
|
mlx5e_destroy_sq(sq);
|
||||||
}
|
}
|
||||||
|
@ -1736,8 +1787,11 @@ static void mlx5e_netdev_set_tcs(struct net_device *netdev)
|
||||||
|
|
||||||
netdev_set_num_tc(netdev, ntc);
|
netdev_set_num_tc(netdev, ntc);
|
||||||
|
|
||||||
|
/* Map netdev TCs to offset 0
|
||||||
|
* We have our own UP to TXQ mapping for QoS
|
||||||
|
*/
|
||||||
for (tc = 0; tc < ntc; tc++)
|
for (tc = 0; tc < ntc; tc++)
|
||||||
netdev_set_tc_queue(netdev, tc, nch, tc * nch);
|
netdev_set_tc_queue(netdev, tc, nch, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
int mlx5e_open_locked(struct net_device *netdev)
|
int mlx5e_open_locked(struct net_device *netdev)
|
||||||
|
@ -2709,6 +2763,29 @@ static netdev_features_t mlx5e_features_check(struct sk_buff *skb,
|
||||||
return features;
|
return features;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void mlx5e_tx_timeout(struct net_device *dev)
|
||||||
|
{
|
||||||
|
struct mlx5e_priv *priv = netdev_priv(dev);
|
||||||
|
bool sched_work = false;
|
||||||
|
int i;
|
||||||
|
|
||||||
|
netdev_err(dev, "TX timeout detected\n");
|
||||||
|
|
||||||
|
for (i = 0; i < priv->params.num_channels * priv->params.num_tc; i++) {
|
||||||
|
struct mlx5e_sq *sq = priv->txq_to_sq_map[i];
|
||||||
|
|
||||||
|
if (!netif_tx_queue_stopped(netdev_get_tx_queue(dev, i)))
|
||||||
|
continue;
|
||||||
|
sched_work = true;
|
||||||
|
set_bit(MLX5E_SQ_STATE_TX_TIMEOUT, &sq->state);
|
||||||
|
netdev_err(dev, "TX timeout on queue: %d, SQ: 0x%x, CQ: 0x%x, SQ Cons: 0x%x SQ Prod: 0x%x\n",
|
||||||
|
i, sq->sqn, sq->cq.mcq.cqn, sq->cc, sq->pc);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sched_work && test_bit(MLX5E_STATE_OPENED, &priv->state))
|
||||||
|
schedule_work(&priv->tx_timeout_work);
|
||||||
|
}
|
||||||
|
|
||||||
static const struct net_device_ops mlx5e_netdev_ops_basic = {
|
static const struct net_device_ops mlx5e_netdev_ops_basic = {
|
||||||
.ndo_open = mlx5e_open,
|
.ndo_open = mlx5e_open,
|
||||||
.ndo_stop = mlx5e_close,
|
.ndo_stop = mlx5e_close,
|
||||||
|
@ -2727,6 +2804,7 @@ static const struct net_device_ops mlx5e_netdev_ops_basic = {
|
||||||
#ifdef CONFIG_RFS_ACCEL
|
#ifdef CONFIG_RFS_ACCEL
|
||||||
.ndo_rx_flow_steer = mlx5e_rx_flow_steer,
|
.ndo_rx_flow_steer = mlx5e_rx_flow_steer,
|
||||||
#endif
|
#endif
|
||||||
|
.ndo_tx_timeout = mlx5e_tx_timeout,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct net_device_ops mlx5e_netdev_ops_sriov = {
|
static const struct net_device_ops mlx5e_netdev_ops_sriov = {
|
||||||
|
@ -2757,6 +2835,7 @@ static const struct net_device_ops mlx5e_netdev_ops_sriov = {
|
||||||
.ndo_get_vf_config = mlx5e_get_vf_config,
|
.ndo_get_vf_config = mlx5e_get_vf_config,
|
||||||
.ndo_set_vf_link_state = mlx5e_set_vf_link_state,
|
.ndo_set_vf_link_state = mlx5e_set_vf_link_state,
|
||||||
.ndo_get_vf_stats = mlx5e_get_vf_stats,
|
.ndo_get_vf_stats = mlx5e_get_vf_stats,
|
||||||
|
.ndo_tx_timeout = mlx5e_tx_timeout,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int mlx5e_check_required_hca_cap(struct mlx5_core_dev *mdev)
|
static int mlx5e_check_required_hca_cap(struct mlx5_core_dev *mdev)
|
||||||
|
@ -2983,6 +3062,7 @@ static void mlx5e_build_nic_netdev_priv(struct mlx5_core_dev *mdev,
|
||||||
|
|
||||||
INIT_WORK(&priv->update_carrier_work, mlx5e_update_carrier_work);
|
INIT_WORK(&priv->update_carrier_work, mlx5e_update_carrier_work);
|
||||||
INIT_WORK(&priv->set_rx_mode_work, mlx5e_set_rx_mode_work);
|
INIT_WORK(&priv->set_rx_mode_work, mlx5e_set_rx_mode_work);
|
||||||
|
INIT_WORK(&priv->tx_timeout_work, mlx5e_tx_timeout_work);
|
||||||
INIT_DELAYED_WORK(&priv->update_stats_work, mlx5e_update_stats_work);
|
INIT_DELAYED_WORK(&priv->update_stats_work, mlx5e_update_stats_work);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -212,6 +212,20 @@ err_free_skb:
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void mlx5e_dealloc_rx_wqe(struct mlx5e_rq *rq, u16 ix)
|
||||||
|
{
|
||||||
|
struct sk_buff *skb = rq->skb[ix];
|
||||||
|
|
||||||
|
if (skb) {
|
||||||
|
rq->skb[ix] = NULL;
|
||||||
|
dma_unmap_single(rq->pdev,
|
||||||
|
*((dma_addr_t *)skb->cb),
|
||||||
|
rq->wqe_sz,
|
||||||
|
DMA_FROM_DEVICE);
|
||||||
|
dev_kfree_skb(skb);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static inline int mlx5e_mpwqe_strides_per_page(struct mlx5e_rq *rq)
|
static inline int mlx5e_mpwqe_strides_per_page(struct mlx5e_rq *rq)
|
||||||
{
|
{
|
||||||
return rq->mpwqe_num_strides >> MLX5_MPWRQ_WQE_PAGE_ORDER;
|
return rq->mpwqe_num_strides >> MLX5_MPWRQ_WQE_PAGE_ORDER;
|
||||||
|
@ -574,6 +588,30 @@ int mlx5e_alloc_rx_mpwqe(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe, u16 ix)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void mlx5e_dealloc_rx_mpwqe(struct mlx5e_rq *rq, u16 ix)
|
||||||
|
{
|
||||||
|
struct mlx5e_mpw_info *wi = &rq->wqe_info[ix];
|
||||||
|
|
||||||
|
wi->free_wqe(rq, wi);
|
||||||
|
}
|
||||||
|
|
||||||
|
void mlx5e_free_rx_descs(struct mlx5e_rq *rq)
|
||||||
|
{
|
||||||
|
struct mlx5_wq_ll *wq = &rq->wq;
|
||||||
|
struct mlx5e_rx_wqe *wqe;
|
||||||
|
__be16 wqe_ix_be;
|
||||||
|
u16 wqe_ix;
|
||||||
|
|
||||||
|
while (!mlx5_wq_ll_is_empty(wq)) {
|
||||||
|
wqe_ix_be = *wq->tail_next;
|
||||||
|
wqe_ix = be16_to_cpu(wqe_ix_be);
|
||||||
|
wqe = mlx5_wq_ll_get_wqe(&rq->wq, wqe_ix);
|
||||||
|
rq->dealloc_wqe(rq, wqe_ix);
|
||||||
|
mlx5_wq_ll_pop(&rq->wq, wqe_ix_be,
|
||||||
|
&wqe->next.next_wqe_index);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#define RQ_CANNOT_POST(rq) \
|
#define RQ_CANNOT_POST(rq) \
|
||||||
(!test_bit(MLX5E_RQ_STATE_POST_WQES_ENABLE, &rq->state) || \
|
(!test_bit(MLX5E_RQ_STATE_POST_WQES_ENABLE, &rq->state) || \
|
||||||
test_bit(MLX5E_RQ_STATE_UMR_WQE_IN_PROGRESS, &rq->state))
|
test_bit(MLX5E_RQ_STATE_UMR_WQE_IN_PROGRESS, &rq->state))
|
||||||
|
@ -878,6 +916,9 @@ int mlx5e_poll_rx_cq(struct mlx5e_cq *cq, int budget)
|
||||||
struct mlx5e_rq *rq = container_of(cq, struct mlx5e_rq, cq);
|
struct mlx5e_rq *rq = container_of(cq, struct mlx5e_rq, cq);
|
||||||
int work_done = 0;
|
int work_done = 0;
|
||||||
|
|
||||||
|
if (unlikely(test_bit(MLX5E_RQ_STATE_FLUSH_TIMEOUT, &rq->state)))
|
||||||
|
return 0;
|
||||||
|
|
||||||
if (cq->decmprs_left)
|
if (cq->decmprs_left)
|
||||||
work_done += mlx5e_decompress_cqes_cont(rq, cq, 0, budget);
|
work_done += mlx5e_decompress_cqes_cont(rq, cq, 0, budget);
|
||||||
|
|
||||||
|
|
|
@ -110,8 +110,20 @@ u16 mlx5e_select_queue(struct net_device *dev, struct sk_buff *skb,
|
||||||
{
|
{
|
||||||
struct mlx5e_priv *priv = netdev_priv(dev);
|
struct mlx5e_priv *priv = netdev_priv(dev);
|
||||||
int channel_ix = fallback(dev, skb);
|
int channel_ix = fallback(dev, skb);
|
||||||
int up = (netdev_get_num_tc(dev) && skb_vlan_tag_present(skb)) ?
|
int up = 0;
|
||||||
skb->vlan_tci >> VLAN_PRIO_SHIFT : 0;
|
|
||||||
|
if (!netdev_get_num_tc(dev))
|
||||||
|
return channel_ix;
|
||||||
|
|
||||||
|
if (skb_vlan_tag_present(skb))
|
||||||
|
up = skb->vlan_tci >> VLAN_PRIO_SHIFT;
|
||||||
|
|
||||||
|
/* channel_ix can be larger than num_channels since
|
||||||
|
* dev->num_real_tx_queues = num_channels * num_tc
|
||||||
|
*/
|
||||||
|
if (channel_ix >= priv->params.num_channels)
|
||||||
|
channel_ix = reciprocal_scale(channel_ix,
|
||||||
|
priv->params.num_channels);
|
||||||
|
|
||||||
return priv->channeltc_to_txq_map[channel_ix][up];
|
return priv->channeltc_to_txq_map[channel_ix][up];
|
||||||
}
|
}
|
||||||
|
@ -123,7 +135,7 @@ static inline u16 mlx5e_get_inline_hdr_size(struct mlx5e_sq *sq,
|
||||||
* headers and occur before the data gather.
|
* headers and occur before the data gather.
|
||||||
* Therefore these headers must be copied into the WQE
|
* Therefore these headers must be copied into the WQE
|
||||||
*/
|
*/
|
||||||
#define MLX5E_MIN_INLINE ETH_HLEN
|
#define MLX5E_MIN_INLINE (ETH_HLEN + VLAN_HLEN)
|
||||||
|
|
||||||
if (bf) {
|
if (bf) {
|
||||||
u16 ihs = skb_headlen(skb);
|
u16 ihs = skb_headlen(skb);
|
||||||
|
@ -135,7 +147,7 @@ static inline u16 mlx5e_get_inline_hdr_size(struct mlx5e_sq *sq,
|
||||||
return skb_headlen(skb);
|
return skb_headlen(skb);
|
||||||
}
|
}
|
||||||
|
|
||||||
return MLX5E_MIN_INLINE;
|
return max(skb_network_offset(skb), MLX5E_MIN_INLINE);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void mlx5e_tx_skb_pull_inline(unsigned char **skb_data,
|
static inline void mlx5e_tx_skb_pull_inline(unsigned char **skb_data,
|
||||||
|
@ -341,6 +353,35 @@ netdev_tx_t mlx5e_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||||
return mlx5e_sq_xmit(sq, skb);
|
return mlx5e_sq_xmit(sq, skb);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void mlx5e_free_tx_descs(struct mlx5e_sq *sq)
|
||||||
|
{
|
||||||
|
struct mlx5e_tx_wqe_info *wi;
|
||||||
|
struct sk_buff *skb;
|
||||||
|
u16 ci;
|
||||||
|
int i;
|
||||||
|
|
||||||
|
while (sq->cc != sq->pc) {
|
||||||
|
ci = sq->cc & sq->wq.sz_m1;
|
||||||
|
skb = sq->skb[ci];
|
||||||
|
wi = &sq->wqe_info[ci];
|
||||||
|
|
||||||
|
if (!skb) { /* nop */
|
||||||
|
sq->cc++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < wi->num_dma; i++) {
|
||||||
|
struct mlx5e_sq_dma *dma =
|
||||||
|
mlx5e_dma_get(sq, sq->dma_fifo_cc++);
|
||||||
|
|
||||||
|
mlx5e_tx_dma_unmap(sq->pdev, dma);
|
||||||
|
}
|
||||||
|
|
||||||
|
dev_kfree_skb_any(skb);
|
||||||
|
sq->cc += wi->num_wqebbs;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq, int napi_budget)
|
bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq, int napi_budget)
|
||||||
{
|
{
|
||||||
struct mlx5e_sq *sq;
|
struct mlx5e_sq *sq;
|
||||||
|
@ -352,6 +393,9 @@ bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq, int napi_budget)
|
||||||
|
|
||||||
sq = container_of(cq, struct mlx5e_sq, cq);
|
sq = container_of(cq, struct mlx5e_sq, cq);
|
||||||
|
|
||||||
|
if (unlikely(test_bit(MLX5E_SQ_STATE_TX_TIMEOUT, &sq->state)))
|
||||||
|
return false;
|
||||||
|
|
||||||
npkts = 0;
|
npkts = 0;
|
||||||
nbytes = 0;
|
nbytes = 0;
|
||||||
|
|
||||||
|
|
|
@ -108,15 +108,21 @@ static int in_fatal(struct mlx5_core_dev *dev)
|
||||||
|
|
||||||
void mlx5_enter_error_state(struct mlx5_core_dev *dev)
|
void mlx5_enter_error_state(struct mlx5_core_dev *dev)
|
||||||
{
|
{
|
||||||
|
mutex_lock(&dev->intf_state_mutex);
|
||||||
if (dev->state == MLX5_DEVICE_STATE_INTERNAL_ERROR)
|
if (dev->state == MLX5_DEVICE_STATE_INTERNAL_ERROR)
|
||||||
return;
|
goto unlock;
|
||||||
|
|
||||||
mlx5_core_err(dev, "start\n");
|
mlx5_core_err(dev, "start\n");
|
||||||
if (pci_channel_offline(dev->pdev) || in_fatal(dev))
|
if (pci_channel_offline(dev->pdev) || in_fatal(dev)) {
|
||||||
dev->state = MLX5_DEVICE_STATE_INTERNAL_ERROR;
|
dev->state = MLX5_DEVICE_STATE_INTERNAL_ERROR;
|
||||||
|
trigger_cmd_completions(dev);
|
||||||
|
}
|
||||||
|
|
||||||
mlx5_core_event(dev, MLX5_DEV_EVENT_SYS_ERROR, 0);
|
mlx5_core_event(dev, MLX5_DEV_EVENT_SYS_ERROR, 0);
|
||||||
mlx5_core_err(dev, "end\n");
|
mlx5_core_err(dev, "end\n");
|
||||||
|
|
||||||
|
unlock:
|
||||||
|
mutex_unlock(&dev->intf_state_mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mlx5_handle_bad_state(struct mlx5_core_dev *dev)
|
static void mlx5_handle_bad_state(struct mlx5_core_dev *dev)
|
||||||
|
@ -245,7 +251,6 @@ static void poll_health(unsigned long data)
|
||||||
u32 count;
|
u32 count;
|
||||||
|
|
||||||
if (dev->state == MLX5_DEVICE_STATE_INTERNAL_ERROR) {
|
if (dev->state == MLX5_DEVICE_STATE_INTERNAL_ERROR) {
|
||||||
trigger_cmd_completions(dev);
|
|
||||||
mod_timer(&health->timer, get_next_poll_jiffies());
|
mod_timer(&health->timer, get_next_poll_jiffies());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1450,46 +1450,31 @@ void mlx5_disable_device(struct mlx5_core_dev *dev)
|
||||||
mlx5_pci_err_detected(dev->pdev, 0);
|
mlx5_pci_err_detected(dev->pdev, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* wait for the device to show vital signs. For now we check
|
/* wait for the device to show vital signs by waiting
|
||||||
* that we can read the device ID and that the health buffer
|
* for the health counter to start counting.
|
||||||
* shows a non zero value which is different than 0xffffffff
|
|
||||||
*/
|
*/
|
||||||
static void wait_vital(struct pci_dev *pdev)
|
static int wait_vital(struct pci_dev *pdev)
|
||||||
{
|
{
|
||||||
struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
|
struct mlx5_core_dev *dev = pci_get_drvdata(pdev);
|
||||||
struct mlx5_core_health *health = &dev->priv.health;
|
struct mlx5_core_health *health = &dev->priv.health;
|
||||||
const int niter = 100;
|
const int niter = 100;
|
||||||
|
u32 last_count = 0;
|
||||||
u32 count;
|
u32 count;
|
||||||
u16 did;
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
/* Wait for firmware to be ready after reset */
|
|
||||||
msleep(1000);
|
|
||||||
for (i = 0; i < niter; i++) {
|
|
||||||
if (pci_read_config_word(pdev, 2, &did)) {
|
|
||||||
dev_warn(&pdev->dev, "failed reading config word\n");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (did == pdev->device) {
|
|
||||||
dev_info(&pdev->dev, "device ID correctly read after %d iterations\n", i);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
msleep(50);
|
|
||||||
}
|
|
||||||
if (i == niter)
|
|
||||||
dev_warn(&pdev->dev, "%s-%d: could not read device ID\n", __func__, __LINE__);
|
|
||||||
|
|
||||||
for (i = 0; i < niter; i++) {
|
for (i = 0; i < niter; i++) {
|
||||||
count = ioread32be(health->health_counter);
|
count = ioread32be(health->health_counter);
|
||||||
if (count && count != 0xffffffff) {
|
if (count && count != 0xffffffff) {
|
||||||
dev_info(&pdev->dev, "Counter value 0x%x after %d iterations\n", count, i);
|
if (last_count && last_count != count) {
|
||||||
break;
|
dev_info(&pdev->dev, "Counter value 0x%x after %d iterations\n", count, i);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
last_count = count;
|
||||||
}
|
}
|
||||||
msleep(50);
|
msleep(50);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (i == niter)
|
return -ETIMEDOUT;
|
||||||
dev_warn(&pdev->dev, "%s-%d: could not read device ID\n", __func__, __LINE__);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mlx5_pci_resume(struct pci_dev *pdev)
|
static void mlx5_pci_resume(struct pci_dev *pdev)
|
||||||
|
@ -1501,7 +1486,11 @@ static void mlx5_pci_resume(struct pci_dev *pdev)
|
||||||
dev_info(&pdev->dev, "%s was called\n", __func__);
|
dev_info(&pdev->dev, "%s was called\n", __func__);
|
||||||
|
|
||||||
pci_save_state(pdev);
|
pci_save_state(pdev);
|
||||||
wait_vital(pdev);
|
err = wait_vital(pdev);
|
||||||
|
if (err) {
|
||||||
|
dev_err(&pdev->dev, "%s: wait_vital timed out\n", __func__);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
err = mlx5_load_one(dev, priv);
|
err = mlx5_load_one(dev, priv);
|
||||||
if (err)
|
if (err)
|
||||||
|
|
|
@ -345,7 +345,6 @@ retry:
|
||||||
func_id, npages, err);
|
func_id, npages, err);
|
||||||
goto out_4k;
|
goto out_4k;
|
||||||
}
|
}
|
||||||
dev->priv.fw_pages += npages;
|
|
||||||
|
|
||||||
err = mlx5_cmd_status_to_err(&out.hdr);
|
err = mlx5_cmd_status_to_err(&out.hdr);
|
||||||
if (err) {
|
if (err) {
|
||||||
|
@ -373,6 +372,33 @@ out_free:
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int reclaim_pages_cmd(struct mlx5_core_dev *dev,
|
||||||
|
struct mlx5_manage_pages_inbox *in, int in_size,
|
||||||
|
struct mlx5_manage_pages_outbox *out, int out_size)
|
||||||
|
{
|
||||||
|
struct fw_page *fwp;
|
||||||
|
struct rb_node *p;
|
||||||
|
u32 npages;
|
||||||
|
u32 i = 0;
|
||||||
|
|
||||||
|
if (dev->state != MLX5_DEVICE_STATE_INTERNAL_ERROR)
|
||||||
|
return mlx5_cmd_exec_check_status(dev, (u32 *)in, in_size,
|
||||||
|
(u32 *)out, out_size);
|
||||||
|
|
||||||
|
npages = be32_to_cpu(in->num_entries);
|
||||||
|
|
||||||
|
p = rb_first(&dev->priv.page_root);
|
||||||
|
while (p && i < npages) {
|
||||||
|
fwp = rb_entry(p, struct fw_page, rb_node);
|
||||||
|
out->pas[i] = cpu_to_be64(fwp->addr);
|
||||||
|
p = rb_next(p);
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
|
||||||
|
out->num_entries = cpu_to_be32(i);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int reclaim_pages(struct mlx5_core_dev *dev, u32 func_id, int npages,
|
static int reclaim_pages(struct mlx5_core_dev *dev, u32 func_id, int npages,
|
||||||
int *nclaimed)
|
int *nclaimed)
|
||||||
{
|
{
|
||||||
|
@ -398,15 +424,9 @@ static int reclaim_pages(struct mlx5_core_dev *dev, u32 func_id, int npages,
|
||||||
in.func_id = cpu_to_be16(func_id);
|
in.func_id = cpu_to_be16(func_id);
|
||||||
in.num_entries = cpu_to_be32(npages);
|
in.num_entries = cpu_to_be32(npages);
|
||||||
mlx5_core_dbg(dev, "npages %d, outlen %d\n", npages, outlen);
|
mlx5_core_dbg(dev, "npages %d, outlen %d\n", npages, outlen);
|
||||||
err = mlx5_cmd_exec(dev, &in, sizeof(in), out, outlen);
|
err = reclaim_pages_cmd(dev, &in, sizeof(in), out, outlen);
|
||||||
if (err) {
|
if (err) {
|
||||||
mlx5_core_err(dev, "failed reclaiming pages\n");
|
mlx5_core_err(dev, "failed reclaiming pages: err %d\n", err);
|
||||||
goto out_free;
|
|
||||||
}
|
|
||||||
dev->priv.fw_pages -= npages;
|
|
||||||
|
|
||||||
if (out->hdr.status) {
|
|
||||||
err = mlx5_cmd_status_to_err(&out->hdr);
|
|
||||||
goto out_free;
|
goto out_free;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -417,13 +437,15 @@ static int reclaim_pages(struct mlx5_core_dev *dev, u32 func_id, int npages,
|
||||||
err = -EINVAL;
|
err = -EINVAL;
|
||||||
goto out_free;
|
goto out_free;
|
||||||
}
|
}
|
||||||
if (nclaimed)
|
|
||||||
*nclaimed = num_claimed;
|
|
||||||
|
|
||||||
for (i = 0; i < num_claimed; i++) {
|
for (i = 0; i < num_claimed; i++) {
|
||||||
addr = be64_to_cpu(out->pas[i]);
|
addr = be64_to_cpu(out->pas[i]);
|
||||||
free_4k(dev, addr);
|
free_4k(dev, addr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (nclaimed)
|
||||||
|
*nclaimed = num_claimed;
|
||||||
|
|
||||||
dev->priv.fw_pages -= num_claimed;
|
dev->priv.fw_pages -= num_claimed;
|
||||||
if (func_id)
|
if (func_id)
|
||||||
dev->priv.vfs_pages -= num_claimed;
|
dev->priv.vfs_pages -= num_claimed;
|
||||||
|
@ -514,14 +536,10 @@ int mlx5_reclaim_startup_pages(struct mlx5_core_dev *dev)
|
||||||
p = rb_first(&dev->priv.page_root);
|
p = rb_first(&dev->priv.page_root);
|
||||||
if (p) {
|
if (p) {
|
||||||
fwp = rb_entry(p, struct fw_page, rb_node);
|
fwp = rb_entry(p, struct fw_page, rb_node);
|
||||||
if (dev->state == MLX5_DEVICE_STATE_INTERNAL_ERROR) {
|
err = reclaim_pages(dev, fwp->func_id,
|
||||||
free_4k(dev, fwp->addr);
|
optimal_reclaimed_pages(),
|
||||||
nclaimed = 1;
|
&nclaimed);
|
||||||
} else {
|
|
||||||
err = reclaim_pages(dev, fwp->func_id,
|
|
||||||
optimal_reclaimed_pages(),
|
|
||||||
&nclaimed);
|
|
||||||
}
|
|
||||||
if (err) {
|
if (err) {
|
||||||
mlx5_core_warn(dev, "failed reclaiming pages (%d)\n",
|
mlx5_core_warn(dev, "failed reclaiming pages (%d)\n",
|
||||||
err);
|
err);
|
||||||
|
@ -536,6 +554,13 @@ int mlx5_reclaim_startup_pages(struct mlx5_core_dev *dev)
|
||||||
}
|
}
|
||||||
} while (p);
|
} while (p);
|
||||||
|
|
||||||
|
WARN(dev->priv.fw_pages,
|
||||||
|
"FW pages counter is %d after reclaiming all pages\n",
|
||||||
|
dev->priv.fw_pages);
|
||||||
|
WARN(dev->priv.vfs_pages,
|
||||||
|
"VFs FW pages counter is %d after reclaiming all pages\n",
|
||||||
|
dev->priv.vfs_pages);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -513,7 +513,6 @@ int mlx5_modify_nic_vport_node_guid(struct mlx5_core_dev *mdev,
|
||||||
{
|
{
|
||||||
int inlen = MLX5_ST_SZ_BYTES(modify_nic_vport_context_in);
|
int inlen = MLX5_ST_SZ_BYTES(modify_nic_vport_context_in);
|
||||||
void *nic_vport_context;
|
void *nic_vport_context;
|
||||||
u8 *guid;
|
|
||||||
void *in;
|
void *in;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
|
@ -535,8 +534,6 @@ int mlx5_modify_nic_vport_node_guid(struct mlx5_core_dev *mdev,
|
||||||
|
|
||||||
nic_vport_context = MLX5_ADDR_OF(modify_nic_vport_context_in,
|
nic_vport_context = MLX5_ADDR_OF(modify_nic_vport_context_in,
|
||||||
in, nic_vport_context);
|
in, nic_vport_context);
|
||||||
guid = MLX5_ADDR_OF(nic_vport_context, nic_vport_context,
|
|
||||||
node_guid);
|
|
||||||
MLX5_SET64(nic_vport_context, nic_vport_context, node_guid, node_guid);
|
MLX5_SET64(nic_vport_context, nic_vport_context, node_guid, node_guid);
|
||||||
|
|
||||||
err = mlx5_modify_nic_vport_context(mdev, in, inlen);
|
err = mlx5_modify_nic_vport_context(mdev, in, inlen);
|
||||||
|
|
|
@ -1151,7 +1151,8 @@ static void enc28j60_irq_work_handler(struct work_struct *work)
|
||||||
enc28j60_phy_read(priv, PHIR);
|
enc28j60_phy_read(priv, PHIR);
|
||||||
}
|
}
|
||||||
/* TX complete handler */
|
/* TX complete handler */
|
||||||
if ((intflags & EIR_TXIF) != 0) {
|
if (((intflags & EIR_TXIF) != 0) &&
|
||||||
|
((intflags & EIR_TXERIF) == 0)) {
|
||||||
bool err = false;
|
bool err = false;
|
||||||
loop++;
|
loop++;
|
||||||
if (netif_msg_intr(priv))
|
if (netif_msg_intr(priv))
|
||||||
|
@ -1203,7 +1204,7 @@ static void enc28j60_irq_work_handler(struct work_struct *work)
|
||||||
enc28j60_tx_clear(ndev, true);
|
enc28j60_tx_clear(ndev, true);
|
||||||
} else
|
} else
|
||||||
enc28j60_tx_clear(ndev, true);
|
enc28j60_tx_clear(ndev, true);
|
||||||
locked_reg_bfclr(priv, EIR, EIR_TXERIF);
|
locked_reg_bfclr(priv, EIR, EIR_TXERIF | EIR_TXIF);
|
||||||
}
|
}
|
||||||
/* RX Error handler */
|
/* RX Error handler */
|
||||||
if ((intflags & EIR_RXERIF) != 0) {
|
if ((intflags & EIR_RXERIF) != 0) {
|
||||||
|
@ -1238,6 +1239,8 @@ static void enc28j60_irq_work_handler(struct work_struct *work)
|
||||||
*/
|
*/
|
||||||
static void enc28j60_hw_tx(struct enc28j60_net *priv)
|
static void enc28j60_hw_tx(struct enc28j60_net *priv)
|
||||||
{
|
{
|
||||||
|
BUG_ON(!priv->tx_skb);
|
||||||
|
|
||||||
if (netif_msg_tx_queued(priv))
|
if (netif_msg_tx_queued(priv))
|
||||||
printk(KERN_DEBUG DRV_NAME
|
printk(KERN_DEBUG DRV_NAME
|
||||||
": Tx Packet Len:%d\n", priv->tx_skb->len);
|
": Tx Packet Len:%d\n", priv->tx_skb->len);
|
||||||
|
|
|
@ -772,6 +772,8 @@ netdev_tx_t qlcnic_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
|
||||||
tx_ring->tx_stats.tx_bytes += skb->len;
|
tx_ring->tx_stats.tx_bytes += skb->len;
|
||||||
tx_ring->tx_stats.xmit_called++;
|
tx_ring->tx_stats.xmit_called++;
|
||||||
|
|
||||||
|
/* Ensure writes are complete before HW fetches Tx descriptors */
|
||||||
|
wmb();
|
||||||
qlcnic_update_cmd_producer(tx_ring);
|
qlcnic_update_cmd_producer(tx_ring);
|
||||||
|
|
||||||
return NETDEV_TX_OK;
|
return NETDEV_TX_OK;
|
||||||
|
|
|
@ -2819,7 +2819,7 @@ static irqreturn_t stmmac_interrupt(int irq, void *dev_id)
|
||||||
priv->tx_path_in_lpi_mode = true;
|
priv->tx_path_in_lpi_mode = true;
|
||||||
if (status & CORE_IRQ_TX_PATH_EXIT_LPI_MODE)
|
if (status & CORE_IRQ_TX_PATH_EXIT_LPI_MODE)
|
||||||
priv->tx_path_in_lpi_mode = false;
|
priv->tx_path_in_lpi_mode = false;
|
||||||
if (status & CORE_IRQ_MTL_RX_OVERFLOW)
|
if (status & CORE_IRQ_MTL_RX_OVERFLOW && priv->hw->dma->set_rx_tail_ptr)
|
||||||
priv->hw->dma->set_rx_tail_ptr(priv->ioaddr,
|
priv->hw->dma->set_rx_tail_ptr(priv->ioaddr,
|
||||||
priv->rx_tail_addr,
|
priv->rx_tail_addr,
|
||||||
STMMAC_CHAN0);
|
STMMAC_CHAN0);
|
||||||
|
|
|
@ -1036,12 +1036,17 @@ static netdev_tx_t geneve_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||||
|
|
||||||
static int __geneve_change_mtu(struct net_device *dev, int new_mtu, bool strict)
|
static int __geneve_change_mtu(struct net_device *dev, int new_mtu, bool strict)
|
||||||
{
|
{
|
||||||
|
struct geneve_dev *geneve = netdev_priv(dev);
|
||||||
/* The max_mtu calculation does not take account of GENEVE
|
/* The max_mtu calculation does not take account of GENEVE
|
||||||
* options, to avoid excluding potentially valid
|
* options, to avoid excluding potentially valid
|
||||||
* configurations.
|
* configurations.
|
||||||
*/
|
*/
|
||||||
int max_mtu = IP_MAX_MTU - GENEVE_BASE_HLEN - sizeof(struct iphdr)
|
int max_mtu = IP_MAX_MTU - GENEVE_BASE_HLEN - dev->hard_header_len;
|
||||||
- dev->hard_header_len;
|
|
||||||
|
if (geneve->remote.sa.sa_family == AF_INET6)
|
||||||
|
max_mtu -= sizeof(struct ipv6hdr);
|
||||||
|
else
|
||||||
|
max_mtu -= sizeof(struct iphdr);
|
||||||
|
|
||||||
if (new_mtu < 68)
|
if (new_mtu < 68)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
|
@ -2640,6 +2640,7 @@ static netdev_tx_t macsec_start_xmit(struct sk_buff *skb,
|
||||||
u64_stats_update_begin(&secy_stats->syncp);
|
u64_stats_update_begin(&secy_stats->syncp);
|
||||||
secy_stats->stats.OutPktsUntagged++;
|
secy_stats->stats.OutPktsUntagged++;
|
||||||
u64_stats_update_end(&secy_stats->syncp);
|
u64_stats_update_end(&secy_stats->syncp);
|
||||||
|
skb->dev = macsec->real_dev;
|
||||||
len = skb->len;
|
len = skb->len;
|
||||||
ret = dev_queue_xmit(skb);
|
ret = dev_queue_xmit(skb);
|
||||||
count_tx(dev, ret, len);
|
count_tx(dev, ret, len);
|
||||||
|
|
|
@ -57,6 +57,7 @@
|
||||||
|
|
||||||
/* PHY CTRL bits */
|
/* PHY CTRL bits */
|
||||||
#define DP83867_PHYCR_FIFO_DEPTH_SHIFT 14
|
#define DP83867_PHYCR_FIFO_DEPTH_SHIFT 14
|
||||||
|
#define DP83867_PHYCR_FIFO_DEPTH_MASK (3 << 14)
|
||||||
|
|
||||||
/* RGMIIDCTL bits */
|
/* RGMIIDCTL bits */
|
||||||
#define DP83867_RGMII_TX_CLK_DELAY_SHIFT 4
|
#define DP83867_RGMII_TX_CLK_DELAY_SHIFT 4
|
||||||
|
@ -133,8 +134,8 @@ static int dp83867_of_init(struct phy_device *phydev)
|
||||||
static int dp83867_config_init(struct phy_device *phydev)
|
static int dp83867_config_init(struct phy_device *phydev)
|
||||||
{
|
{
|
||||||
struct dp83867_private *dp83867;
|
struct dp83867_private *dp83867;
|
||||||
int ret;
|
int ret, val;
|
||||||
u16 val, delay;
|
u16 delay;
|
||||||
|
|
||||||
if (!phydev->priv) {
|
if (!phydev->priv) {
|
||||||
dp83867 = devm_kzalloc(&phydev->mdio.dev, sizeof(*dp83867),
|
dp83867 = devm_kzalloc(&phydev->mdio.dev, sizeof(*dp83867),
|
||||||
|
@ -151,8 +152,12 @@ static int dp83867_config_init(struct phy_device *phydev)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (phy_interface_is_rgmii(phydev)) {
|
if (phy_interface_is_rgmii(phydev)) {
|
||||||
ret = phy_write(phydev, MII_DP83867_PHYCTRL,
|
val = phy_read(phydev, MII_DP83867_PHYCTRL);
|
||||||
(dp83867->fifo_depth << DP83867_PHYCR_FIFO_DEPTH_SHIFT));
|
if (val < 0)
|
||||||
|
return val;
|
||||||
|
val &= ~DP83867_PHYCR_FIFO_DEPTH_MASK;
|
||||||
|
val |= (dp83867->fifo_depth << DP83867_PHYCR_FIFO_DEPTH_SHIFT);
|
||||||
|
ret = phy_write(phydev, MII_DP83867_PHYCTRL, val);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
|
@ -854,6 +854,13 @@ int cdc_ncm_bind_common(struct usbnet *dev, struct usb_interface *intf, u8 data_
|
||||||
if (cdc_ncm_init(dev))
|
if (cdc_ncm_init(dev))
|
||||||
goto error2;
|
goto error2;
|
||||||
|
|
||||||
|
/* Some firmwares need a pause here or they will silently fail
|
||||||
|
* to set up the interface properly. This value was decided
|
||||||
|
* empirically on a Sierra Wireless MC7455 running 02.08.02.00
|
||||||
|
* firmware.
|
||||||
|
*/
|
||||||
|
usleep_range(10000, 20000);
|
||||||
|
|
||||||
/* configure data interface */
|
/* configure data interface */
|
||||||
temp = usb_set_interface(dev->udev, iface_no, data_altsetting);
|
temp = usb_set_interface(dev->udev, iface_no, data_altsetting);
|
||||||
if (temp) {
|
if (temp) {
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
#define NETNEXT_VERSION "08"
|
#define NETNEXT_VERSION "08"
|
||||||
|
|
||||||
/* Information for net */
|
/* Information for net */
|
||||||
#define NET_VERSION "4"
|
#define NET_VERSION "5"
|
||||||
|
|
||||||
#define DRIVER_VERSION "v1." NETNEXT_VERSION "." NET_VERSION
|
#define DRIVER_VERSION "v1." NETNEXT_VERSION "." NET_VERSION
|
||||||
#define DRIVER_AUTHOR "Realtek linux nic maintainers <nic_swsd@realtek.com>"
|
#define DRIVER_AUTHOR "Realtek linux nic maintainers <nic_swsd@realtek.com>"
|
||||||
|
@ -625,6 +625,7 @@ struct r8152 {
|
||||||
int (*eee_set)(struct r8152 *, struct ethtool_eee *);
|
int (*eee_set)(struct r8152 *, struct ethtool_eee *);
|
||||||
bool (*in_nway)(struct r8152 *);
|
bool (*in_nway)(struct r8152 *);
|
||||||
void (*hw_phy_cfg)(struct r8152 *);
|
void (*hw_phy_cfg)(struct r8152 *);
|
||||||
|
void (*autosuspend_en)(struct r8152 *tp, bool enable);
|
||||||
} rtl_ops;
|
} rtl_ops;
|
||||||
|
|
||||||
int intr_interval;
|
int intr_interval;
|
||||||
|
@ -2412,9 +2413,6 @@ static void rtl_runtime_suspend_enable(struct r8152 *tp, bool enable)
|
||||||
if (enable) {
|
if (enable) {
|
||||||
u32 ocp_data;
|
u32 ocp_data;
|
||||||
|
|
||||||
r8153_u1u2en(tp, false);
|
|
||||||
r8153_u2p3en(tp, false);
|
|
||||||
|
|
||||||
__rtl_set_wol(tp, WAKE_ANY);
|
__rtl_set_wol(tp, WAKE_ANY);
|
||||||
|
|
||||||
ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
|
ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
|
||||||
|
@ -2425,7 +2423,28 @@ static void rtl_runtime_suspend_enable(struct r8152 *tp, bool enable)
|
||||||
|
|
||||||
ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
|
ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
|
||||||
} else {
|
} else {
|
||||||
|
u32 ocp_data;
|
||||||
|
|
||||||
__rtl_set_wol(tp, tp->saved_wolopts);
|
__rtl_set_wol(tp, tp->saved_wolopts);
|
||||||
|
|
||||||
|
ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG);
|
||||||
|
|
||||||
|
ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34);
|
||||||
|
ocp_data &= ~LINK_OFF_WAKE_EN;
|
||||||
|
ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data);
|
||||||
|
|
||||||
|
ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void rtl8153_runtime_enable(struct r8152 *tp, bool enable)
|
||||||
|
{
|
||||||
|
rtl_runtime_suspend_enable(tp, enable);
|
||||||
|
|
||||||
|
if (enable) {
|
||||||
|
r8153_u1u2en(tp, false);
|
||||||
|
r8153_u2p3en(tp, false);
|
||||||
|
} else {
|
||||||
r8153_u2p3en(tp, true);
|
r8153_u2p3en(tp, true);
|
||||||
r8153_u1u2en(tp, true);
|
r8153_u1u2en(tp, true);
|
||||||
}
|
}
|
||||||
|
@ -3530,7 +3549,7 @@ static int rtl8152_suspend(struct usb_interface *intf, pm_message_t message)
|
||||||
napi_disable(&tp->napi);
|
napi_disable(&tp->napi);
|
||||||
if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
|
if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
|
||||||
rtl_stop_rx(tp);
|
rtl_stop_rx(tp);
|
||||||
rtl_runtime_suspend_enable(tp, true);
|
tp->rtl_ops.autosuspend_en(tp, true);
|
||||||
} else {
|
} else {
|
||||||
cancel_delayed_work_sync(&tp->schedule);
|
cancel_delayed_work_sync(&tp->schedule);
|
||||||
tp->rtl_ops.down(tp);
|
tp->rtl_ops.down(tp);
|
||||||
|
@ -3557,7 +3576,7 @@ static int rtl8152_resume(struct usb_interface *intf)
|
||||||
|
|
||||||
if (netif_running(tp->netdev) && tp->netdev->flags & IFF_UP) {
|
if (netif_running(tp->netdev) && tp->netdev->flags & IFF_UP) {
|
||||||
if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
|
if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
|
||||||
rtl_runtime_suspend_enable(tp, false);
|
tp->rtl_ops.autosuspend_en(tp, false);
|
||||||
clear_bit(SELECTIVE_SUSPEND, &tp->flags);
|
clear_bit(SELECTIVE_SUSPEND, &tp->flags);
|
||||||
napi_disable(&tp->napi);
|
napi_disable(&tp->napi);
|
||||||
set_bit(WORK_ENABLE, &tp->flags);
|
set_bit(WORK_ENABLE, &tp->flags);
|
||||||
|
@ -3572,7 +3591,7 @@ static int rtl8152_resume(struct usb_interface *intf)
|
||||||
usb_submit_urb(tp->intr_urb, GFP_KERNEL);
|
usb_submit_urb(tp->intr_urb, GFP_KERNEL);
|
||||||
} else if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
|
} else if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) {
|
||||||
if (tp->netdev->flags & IFF_UP)
|
if (tp->netdev->flags & IFF_UP)
|
||||||
rtl_runtime_suspend_enable(tp, false);
|
tp->rtl_ops.autosuspend_en(tp, false);
|
||||||
clear_bit(SELECTIVE_SUSPEND, &tp->flags);
|
clear_bit(SELECTIVE_SUSPEND, &tp->flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4158,6 +4177,7 @@ static int rtl_ops_init(struct r8152 *tp)
|
||||||
ops->eee_set = r8152_set_eee;
|
ops->eee_set = r8152_set_eee;
|
||||||
ops->in_nway = rtl8152_in_nway;
|
ops->in_nway = rtl8152_in_nway;
|
||||||
ops->hw_phy_cfg = r8152b_hw_phy_cfg;
|
ops->hw_phy_cfg = r8152b_hw_phy_cfg;
|
||||||
|
ops->autosuspend_en = rtl_runtime_suspend_enable;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case RTL_VER_03:
|
case RTL_VER_03:
|
||||||
|
@ -4174,6 +4194,7 @@ static int rtl_ops_init(struct r8152 *tp)
|
||||||
ops->eee_set = r8153_set_eee;
|
ops->eee_set = r8153_set_eee;
|
||||||
ops->in_nway = rtl8153_in_nway;
|
ops->in_nway = rtl8153_in_nway;
|
||||||
ops->hw_phy_cfg = r8153_hw_phy_cfg;
|
ops->hw_phy_cfg = r8153_hw_phy_cfg;
|
||||||
|
ops->autosuspend_en = rtl8153_runtime_enable;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -395,8 +395,11 @@ int usbnet_change_mtu (struct net_device *net, int new_mtu)
|
||||||
dev->hard_mtu = net->mtu + net->hard_header_len;
|
dev->hard_mtu = net->mtu + net->hard_header_len;
|
||||||
if (dev->rx_urb_size == old_hard_mtu) {
|
if (dev->rx_urb_size == old_hard_mtu) {
|
||||||
dev->rx_urb_size = dev->hard_mtu;
|
dev->rx_urb_size = dev->hard_mtu;
|
||||||
if (dev->rx_urb_size > old_rx_urb_size)
|
if (dev->rx_urb_size > old_rx_urb_size) {
|
||||||
|
usbnet_pause_rx(dev);
|
||||||
usbnet_unlink_rx_urbs(dev);
|
usbnet_unlink_rx_urbs(dev);
|
||||||
|
usbnet_resume_rx(dev);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* max qlen depend on hard_mtu and rx_urb_size */
|
/* max qlen depend on hard_mtu and rx_urb_size */
|
||||||
|
@ -1508,8 +1511,9 @@ static void usbnet_bh (unsigned long param)
|
||||||
} else if (netif_running (dev->net) &&
|
} else if (netif_running (dev->net) &&
|
||||||
netif_device_present (dev->net) &&
|
netif_device_present (dev->net) &&
|
||||||
netif_carrier_ok(dev->net) &&
|
netif_carrier_ok(dev->net) &&
|
||||||
!timer_pending (&dev->delay) &&
|
!timer_pending(&dev->delay) &&
|
||||||
!test_bit (EVENT_RX_HALT, &dev->flags)) {
|
!test_bit(EVENT_RX_PAUSED, &dev->flags) &&
|
||||||
|
!test_bit(EVENT_RX_HALT, &dev->flags)) {
|
||||||
int temp = dev->rxq.qlen;
|
int temp = dev->rxq.qlen;
|
||||||
|
|
||||||
if (temp < RX_QLEN(dev)) {
|
if (temp < RX_QLEN(dev)) {
|
||||||
|
|
|
@ -344,6 +344,8 @@ struct device *nd_pfn_create(struct nd_region *nd_region)
|
||||||
int nd_pfn_validate(struct nd_pfn *nd_pfn, const char *sig)
|
int nd_pfn_validate(struct nd_pfn *nd_pfn, const char *sig)
|
||||||
{
|
{
|
||||||
u64 checksum, offset;
|
u64 checksum, offset;
|
||||||
|
unsigned long align;
|
||||||
|
enum nd_pfn_mode mode;
|
||||||
struct nd_namespace_io *nsio;
|
struct nd_namespace_io *nsio;
|
||||||
struct nd_pfn_sb *pfn_sb = nd_pfn->pfn_sb;
|
struct nd_pfn_sb *pfn_sb = nd_pfn->pfn_sb;
|
||||||
struct nd_namespace_common *ndns = nd_pfn->ndns;
|
struct nd_namespace_common *ndns = nd_pfn->ndns;
|
||||||
|
@ -386,22 +388,50 @@ int nd_pfn_validate(struct nd_pfn *nd_pfn, const char *sig)
|
||||||
return -ENXIO;
|
return -ENXIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
align = le32_to_cpu(pfn_sb->align);
|
||||||
|
offset = le64_to_cpu(pfn_sb->dataoff);
|
||||||
|
if (align == 0)
|
||||||
|
align = 1UL << ilog2(offset);
|
||||||
|
mode = le32_to_cpu(pfn_sb->mode);
|
||||||
|
|
||||||
if (!nd_pfn->uuid) {
|
if (!nd_pfn->uuid) {
|
||||||
/* from probe we allocate */
|
/*
|
||||||
|
* When probing a namepace via nd_pfn_probe() the uuid
|
||||||
|
* is NULL (see: nd_pfn_devinit()) we init settings from
|
||||||
|
* pfn_sb
|
||||||
|
*/
|
||||||
nd_pfn->uuid = kmemdup(pfn_sb->uuid, 16, GFP_KERNEL);
|
nd_pfn->uuid = kmemdup(pfn_sb->uuid, 16, GFP_KERNEL);
|
||||||
if (!nd_pfn->uuid)
|
if (!nd_pfn->uuid)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
nd_pfn->align = align;
|
||||||
|
nd_pfn->mode = mode;
|
||||||
} else {
|
} else {
|
||||||
/* from init we validate */
|
/*
|
||||||
|
* When probing a pfn / dax instance we validate the
|
||||||
|
* live settings against the pfn_sb
|
||||||
|
*/
|
||||||
if (memcmp(nd_pfn->uuid, pfn_sb->uuid, 16) != 0)
|
if (memcmp(nd_pfn->uuid, pfn_sb->uuid, 16) != 0)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* If the uuid validates, but other settings mismatch
|
||||||
|
* return EINVAL because userspace has managed to change
|
||||||
|
* the configuration without specifying new
|
||||||
|
* identification.
|
||||||
|
*/
|
||||||
|
if (nd_pfn->align != align || nd_pfn->mode != mode) {
|
||||||
|
dev_err(&nd_pfn->dev,
|
||||||
|
"init failed, settings mismatch\n");
|
||||||
|
dev_dbg(&nd_pfn->dev, "align: %lx:%lx mode: %d:%d\n",
|
||||||
|
nd_pfn->align, align, nd_pfn->mode,
|
||||||
|
mode);
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (nd_pfn->align == 0)
|
if (align > nvdimm_namespace_capacity(ndns)) {
|
||||||
nd_pfn->align = le32_to_cpu(pfn_sb->align);
|
|
||||||
if (nd_pfn->align > nvdimm_namespace_capacity(ndns)) {
|
|
||||||
dev_err(&nd_pfn->dev, "alignment: %lx exceeds capacity %llx\n",
|
dev_err(&nd_pfn->dev, "alignment: %lx exceeds capacity %llx\n",
|
||||||
nd_pfn->align, nvdimm_namespace_capacity(ndns));
|
align, nvdimm_namespace_capacity(ndns));
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -411,7 +441,6 @@ int nd_pfn_validate(struct nd_pfn *nd_pfn, const char *sig)
|
||||||
* namespace has changed since the pfn superblock was
|
* namespace has changed since the pfn superblock was
|
||||||
* established.
|
* established.
|
||||||
*/
|
*/
|
||||||
offset = le64_to_cpu(pfn_sb->dataoff);
|
|
||||||
nsio = to_nd_namespace_io(&ndns->dev);
|
nsio = to_nd_namespace_io(&ndns->dev);
|
||||||
if (offset >= resource_size(&nsio->res)) {
|
if (offset >= resource_size(&nsio->res)) {
|
||||||
dev_err(&nd_pfn->dev, "pfn array size exceeds capacity of %s\n",
|
dev_err(&nd_pfn->dev, "pfn array size exceeds capacity of %s\n",
|
||||||
|
@ -419,10 +448,11 @@ int nd_pfn_validate(struct nd_pfn *nd_pfn, const char *sig)
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((nd_pfn->align && !IS_ALIGNED(offset, nd_pfn->align))
|
if ((align && !IS_ALIGNED(offset, align))
|
||||||
|| !IS_ALIGNED(offset, PAGE_SIZE)) {
|
|| !IS_ALIGNED(offset, PAGE_SIZE)) {
|
||||||
dev_err(&nd_pfn->dev, "bad offset: %#llx dax disabled\n",
|
dev_err(&nd_pfn->dev,
|
||||||
offset);
|
"bad offset: %#llx dax disabled align: %#lx\n",
|
||||||
|
offset, align);
|
||||||
return -ENXIO;
|
return -ENXIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -502,7 +532,6 @@ static struct vmem_altmap *__nvdimm_setup_pfn(struct nd_pfn *nd_pfn,
|
||||||
res->start += start_pad;
|
res->start += start_pad;
|
||||||
res->end -= end_trunc;
|
res->end -= end_trunc;
|
||||||
|
|
||||||
nd_pfn->mode = le32_to_cpu(nd_pfn->pfn_sb->mode);
|
|
||||||
if (nd_pfn->mode == PFN_MODE_RAM) {
|
if (nd_pfn->mode == PFN_MODE_RAM) {
|
||||||
if (offset < SZ_8K)
|
if (offset < SZ_8K)
|
||||||
return ERR_PTR(-EINVAL);
|
return ERR_PTR(-EINVAL);
|
||||||
|
|
|
@ -109,8 +109,8 @@ static int bcm_ns_usb2_probe(struct platform_device *pdev)
|
||||||
}
|
}
|
||||||
|
|
||||||
usb2->phy = devm_phy_create(dev, NULL, &ops);
|
usb2->phy = devm_phy_create(dev, NULL, &ops);
|
||||||
if (IS_ERR(dev))
|
if (IS_ERR(usb2->phy))
|
||||||
return PTR_ERR(dev);
|
return PTR_ERR(usb2->phy);
|
||||||
|
|
||||||
phy_set_drvdata(usb2->phy, usb2);
|
phy_set_drvdata(usb2->phy, usb2);
|
||||||
platform_set_drvdata(pdev, usb2);
|
platform_set_drvdata(pdev, usb2);
|
||||||
|
|
|
@ -1143,7 +1143,8 @@ static int miphy28lp_probe_resets(struct device_node *node,
|
||||||
struct miphy28lp_dev *miphy_dev = miphy_phy->phydev;
|
struct miphy28lp_dev *miphy_dev = miphy_phy->phydev;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
miphy_phy->miphy_rst = of_reset_control_get(node, "miphy-sw-rst");
|
miphy_phy->miphy_rst =
|
||||||
|
of_reset_control_get_shared(node, "miphy-sw-rst");
|
||||||
|
|
||||||
if (IS_ERR(miphy_phy->miphy_rst)) {
|
if (IS_ERR(miphy_phy->miphy_rst)) {
|
||||||
dev_err(miphy_dev->dev,
|
dev_err(miphy_dev->dev,
|
||||||
|
|
|
@ -144,12 +144,6 @@ static void rcar_gen3_init_for_peri(struct rcar_gen3_chan *ch)
|
||||||
extcon_set_cable_state_(ch->extcon, EXTCON_USB, true);
|
extcon_set_cable_state_(ch->extcon, EXTCON_USB, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool rcar_gen3_check_vbus(struct rcar_gen3_chan *ch)
|
|
||||||
{
|
|
||||||
return !!(readl(ch->base + USB2_ADPCTRL) &
|
|
||||||
USB2_ADPCTRL_OTGSESSVLD);
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool rcar_gen3_check_id(struct rcar_gen3_chan *ch)
|
static bool rcar_gen3_check_id(struct rcar_gen3_chan *ch)
|
||||||
{
|
{
|
||||||
return !!(readl(ch->base + USB2_ADPCTRL) & USB2_ADPCTRL_IDDIG);
|
return !!(readl(ch->base + USB2_ADPCTRL) & USB2_ADPCTRL_IDDIG);
|
||||||
|
@ -157,13 +151,7 @@ static bool rcar_gen3_check_id(struct rcar_gen3_chan *ch)
|
||||||
|
|
||||||
static void rcar_gen3_device_recognition(struct rcar_gen3_chan *ch)
|
static void rcar_gen3_device_recognition(struct rcar_gen3_chan *ch)
|
||||||
{
|
{
|
||||||
bool is_host = true;
|
if (!rcar_gen3_check_id(ch))
|
||||||
|
|
||||||
/* B-device? */
|
|
||||||
if (rcar_gen3_check_id(ch) && rcar_gen3_check_vbus(ch))
|
|
||||||
is_host = false;
|
|
||||||
|
|
||||||
if (is_host)
|
|
||||||
rcar_gen3_init_for_host(ch);
|
rcar_gen3_init_for_host(ch);
|
||||||
else
|
else
|
||||||
rcar_gen3_init_for_peri(ch);
|
rcar_gen3_init_for_peri(ch);
|
||||||
|
|
|
@ -90,7 +90,7 @@ static int rockchip_dp_phy_probe(struct platform_device *pdev)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
dp = devm_kzalloc(dev, sizeof(*dp), GFP_KERNEL);
|
dp = devm_kzalloc(dev, sizeof(*dp), GFP_KERNEL);
|
||||||
if (IS_ERR(dp))
|
if (!dp)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
dp->dev = dev;
|
dp->dev = dev;
|
||||||
|
|
|
@ -105,13 +105,13 @@ static int stih407_usb2_picophy_probe(struct platform_device *pdev)
|
||||||
phy_dev->dev = dev;
|
phy_dev->dev = dev;
|
||||||
dev_set_drvdata(dev, phy_dev);
|
dev_set_drvdata(dev, phy_dev);
|
||||||
|
|
||||||
phy_dev->rstc = devm_reset_control_get(dev, "global");
|
phy_dev->rstc = devm_reset_control_get_shared(dev, "global");
|
||||||
if (IS_ERR(phy_dev->rstc)) {
|
if (IS_ERR(phy_dev->rstc)) {
|
||||||
dev_err(dev, "failed to ctrl picoPHY reset\n");
|
dev_err(dev, "failed to ctrl picoPHY reset\n");
|
||||||
return PTR_ERR(phy_dev->rstc);
|
return PTR_ERR(phy_dev->rstc);
|
||||||
}
|
}
|
||||||
|
|
||||||
phy_dev->rstport = devm_reset_control_get(dev, "port");
|
phy_dev->rstport = devm_reset_control_get_exclusive(dev, "port");
|
||||||
if (IS_ERR(phy_dev->rstport)) {
|
if (IS_ERR(phy_dev->rstport)) {
|
||||||
dev_err(dev, "failed to ctrl picoPHY reset\n");
|
dev_err(dev, "failed to ctrl picoPHY reset\n");
|
||||||
return PTR_ERR(phy_dev->rstport);
|
return PTR_ERR(phy_dev->rstport);
|
||||||
|
|
|
@ -175,7 +175,7 @@ static void sun4i_usb_phy_write(struct sun4i_usb_phy *phy, u32 addr, u32 data,
|
||||||
{
|
{
|
||||||
struct sun4i_usb_phy_data *phy_data = to_sun4i_usb_phy_data(phy);
|
struct sun4i_usb_phy_data *phy_data = to_sun4i_usb_phy_data(phy);
|
||||||
u32 temp, usbc_bit = BIT(phy->index * 2);
|
u32 temp, usbc_bit = BIT(phy->index * 2);
|
||||||
void *phyctl = phy_data->base + phy_data->cfg->phyctl_offset;
|
void __iomem *phyctl = phy_data->base + phy_data->cfg->phyctl_offset;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
mutex_lock(&phy_data->mutex);
|
mutex_lock(&phy_data->mutex);
|
||||||
|
@ -514,9 +514,9 @@ static int sun4i_usb_phy_remove(struct platform_device *pdev)
|
||||||
|
|
||||||
if (data->vbus_power_nb_registered)
|
if (data->vbus_power_nb_registered)
|
||||||
power_supply_unreg_notifier(&data->vbus_power_nb);
|
power_supply_unreg_notifier(&data->vbus_power_nb);
|
||||||
if (data->id_det_irq >= 0)
|
if (data->id_det_irq > 0)
|
||||||
devm_free_irq(dev, data->id_det_irq, data);
|
devm_free_irq(dev, data->id_det_irq, data);
|
||||||
if (data->vbus_det_irq >= 0)
|
if (data->vbus_det_irq > 0)
|
||||||
devm_free_irq(dev, data->vbus_det_irq, data);
|
devm_free_irq(dev, data->vbus_det_irq, data);
|
||||||
|
|
||||||
cancel_delayed_work_sync(&data->detect);
|
cancel_delayed_work_sync(&data->detect);
|
||||||
|
@ -645,11 +645,11 @@ static int sun4i_usb_phy_probe(struct platform_device *pdev)
|
||||||
|
|
||||||
data->id_det_irq = gpiod_to_irq(data->id_det_gpio);
|
data->id_det_irq = gpiod_to_irq(data->id_det_gpio);
|
||||||
data->vbus_det_irq = gpiod_to_irq(data->vbus_det_gpio);
|
data->vbus_det_irq = gpiod_to_irq(data->vbus_det_gpio);
|
||||||
if ((data->id_det_gpio && data->id_det_irq < 0) ||
|
if ((data->id_det_gpio && data->id_det_irq <= 0) ||
|
||||||
(data->vbus_det_gpio && data->vbus_det_irq < 0))
|
(data->vbus_det_gpio && data->vbus_det_irq <= 0))
|
||||||
data->phy0_poll = true;
|
data->phy0_poll = true;
|
||||||
|
|
||||||
if (data->id_det_irq >= 0) {
|
if (data->id_det_irq > 0) {
|
||||||
ret = devm_request_irq(dev, data->id_det_irq,
|
ret = devm_request_irq(dev, data->id_det_irq,
|
||||||
sun4i_usb_phy0_id_vbus_det_irq,
|
sun4i_usb_phy0_id_vbus_det_irq,
|
||||||
IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
|
IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
|
||||||
|
@ -660,7 +660,7 @@ static int sun4i_usb_phy_probe(struct platform_device *pdev)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (data->vbus_det_irq >= 0) {
|
if (data->vbus_det_irq > 0) {
|
||||||
ret = devm_request_irq(dev, data->vbus_det_irq,
|
ret = devm_request_irq(dev, data->vbus_det_irq,
|
||||||
sun4i_usb_phy0_id_vbus_det_irq,
|
sun4i_usb_phy0_id_vbus_det_irq,
|
||||||
IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
|
IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
|
||||||
|
|
|
@ -151,13 +151,19 @@ static long ec_device_ioctl_xcmd(struct cros_ec_dev *ec, void __user *arg)
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (u_cmd.outsize != s_cmd->outsize ||
|
||||||
|
u_cmd.insize != s_cmd->insize) {
|
||||||
|
ret = -EINVAL;
|
||||||
|
goto exit;
|
||||||
|
}
|
||||||
|
|
||||||
s_cmd->command += ec->cmd_offset;
|
s_cmd->command += ec->cmd_offset;
|
||||||
ret = cros_ec_cmd_xfer(ec->ec_dev, s_cmd);
|
ret = cros_ec_cmd_xfer(ec->ec_dev, s_cmd);
|
||||||
/* Only copy data to userland if data was received. */
|
/* Only copy data to userland if data was received. */
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto exit;
|
goto exit;
|
||||||
|
|
||||||
if (copy_to_user(arg, s_cmd, sizeof(*s_cmd) + u_cmd.insize))
|
if (copy_to_user(arg, s_cmd, sizeof(*s_cmd) + s_cmd->insize))
|
||||||
ret = -EFAULT;
|
ret = -EFAULT;
|
||||||
exit:
|
exit:
|
||||||
kfree(s_cmd);
|
kfree(s_cmd);
|
||||||
|
|
|
@ -296,7 +296,7 @@ static int anatop_regulator_probe(struct platform_device *pdev)
|
||||||
if (!sreg->sel && !strcmp(sreg->name, "vddpu"))
|
if (!sreg->sel && !strcmp(sreg->name, "vddpu"))
|
||||||
sreg->sel = 22;
|
sreg->sel = 22;
|
||||||
|
|
||||||
if (!sreg->sel) {
|
if (!sreg->bypass && !sreg->sel) {
|
||||||
dev_err(&pdev->dev, "Failed to read a valid default voltage selector.\n");
|
dev_err(&pdev->dev, "Failed to read a valid default voltage selector.\n");
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
|
@ -123,6 +123,9 @@ static int max77620_regulator_set_fps_src(struct max77620_regulator *pmic,
|
||||||
unsigned int val;
|
unsigned int val;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
if (!rinfo)
|
||||||
|
return 0;
|
||||||
|
|
||||||
switch (fps_src) {
|
switch (fps_src) {
|
||||||
case MAX77620_FPS_SRC_0:
|
case MAX77620_FPS_SRC_0:
|
||||||
case MAX77620_FPS_SRC_1:
|
case MAX77620_FPS_SRC_1:
|
||||||
|
@ -171,6 +174,9 @@ static int max77620_regulator_set_fps_slots(struct max77620_regulator *pmic,
|
||||||
int pd = rpdata->active_fps_pd_slot;
|
int pd = rpdata->active_fps_pd_slot;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
|
if (!rinfo)
|
||||||
|
return 0;
|
||||||
|
|
||||||
if (is_suspend) {
|
if (is_suspend) {
|
||||||
pu = rpdata->suspend_fps_pu_slot;
|
pu = rpdata->suspend_fps_pu_slot;
|
||||||
pd = rpdata->suspend_fps_pd_slot;
|
pd = rpdata->suspend_fps_pd_slot;
|
||||||
|
@ -680,7 +686,6 @@ static struct max77620_regulator_info max77620_regs_info[MAX77620_NUM_REGS] = {
|
||||||
RAIL_SD(SD1, sd1, "in-sd1", SD1, 600000, 1550000, 12500, 0x22, SD1),
|
RAIL_SD(SD1, sd1, "in-sd1", SD1, 600000, 1550000, 12500, 0x22, SD1),
|
||||||
RAIL_SD(SD2, sd2, "in-sd2", SDX, 600000, 3787500, 12500, 0xFF, NONE),
|
RAIL_SD(SD2, sd2, "in-sd2", SDX, 600000, 3787500, 12500, 0xFF, NONE),
|
||||||
RAIL_SD(SD3, sd3, "in-sd3", SDX, 600000, 3787500, 12500, 0xFF, NONE),
|
RAIL_SD(SD3, sd3, "in-sd3", SDX, 600000, 3787500, 12500, 0xFF, NONE),
|
||||||
RAIL_SD(SD4, sd4, "in-sd4", SDX, 600000, 3787500, 12500, 0xFF, NONE),
|
|
||||||
|
|
||||||
RAIL_LDO(LDO0, ldo0, "in-ldo0-1", N, 800000, 2375000, 25000),
|
RAIL_LDO(LDO0, ldo0, "in-ldo0-1", N, 800000, 2375000, 25000),
|
||||||
RAIL_LDO(LDO1, ldo1, "in-ldo0-1", N, 800000, 2375000, 25000),
|
RAIL_LDO(LDO1, ldo1, "in-ldo0-1", N, 800000, 2375000, 25000),
|
||||||
|
|
|
@ -1045,6 +1045,7 @@ static void qeth_l2_remove_device(struct ccwgroup_device *cgdev)
|
||||||
qeth_l2_set_offline(cgdev);
|
qeth_l2_set_offline(cgdev);
|
||||||
|
|
||||||
if (card->dev) {
|
if (card->dev) {
|
||||||
|
netif_napi_del(&card->napi);
|
||||||
unregister_netdev(card->dev);
|
unregister_netdev(card->dev);
|
||||||
card->dev = NULL;
|
card->dev = NULL;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3167,6 +3167,7 @@ static void qeth_l3_remove_device(struct ccwgroup_device *cgdev)
|
||||||
qeth_l3_set_offline(cgdev);
|
qeth_l3_set_offline(cgdev);
|
||||||
|
|
||||||
if (card->dev) {
|
if (card->dev) {
|
||||||
|
netif_napi_del(&card->napi);
|
||||||
unregister_netdev(card->dev);
|
unregister_netdev(card->dev);
|
||||||
card->dev = NULL;
|
card->dev = NULL;
|
||||||
}
|
}
|
||||||
|
|
|
@ -578,7 +578,7 @@ static int rockchip_spi_transfer_one(
|
||||||
struct spi_device *spi,
|
struct spi_device *spi,
|
||||||
struct spi_transfer *xfer)
|
struct spi_transfer *xfer)
|
||||||
{
|
{
|
||||||
int ret = 1;
|
int ret = 0;
|
||||||
struct rockchip_spi *rs = spi_master_get_devdata(master);
|
struct rockchip_spi *rs = spi_master_get_devdata(master);
|
||||||
|
|
||||||
WARN_ON(readl_relaxed(rs->regs + ROCKCHIP_SPI_SSIENR) &&
|
WARN_ON(readl_relaxed(rs->regs + ROCKCHIP_SPI_SSIENR) &&
|
||||||
|
@ -627,6 +627,8 @@ static int rockchip_spi_transfer_one(
|
||||||
spi_enable_chip(rs, 1);
|
spi_enable_chip(rs, 1);
|
||||||
ret = rockchip_spi_prepare_dma(rs);
|
ret = rockchip_spi_prepare_dma(rs);
|
||||||
}
|
}
|
||||||
|
/* successful DMA prepare means the transfer is in progress */
|
||||||
|
ret = ret ? ret : 1;
|
||||||
} else {
|
} else {
|
||||||
spi_enable_chip(rs, 1);
|
spi_enable_chip(rs, 1);
|
||||||
ret = rockchip_spi_pio_transfer(rs);
|
ret = rockchip_spi_pio_transfer(rs);
|
||||||
|
|
|
@ -173,13 +173,17 @@ static int sun4i_spi_transfer_one(struct spi_master *master,
|
||||||
{
|
{
|
||||||
struct sun4i_spi *sspi = spi_master_get_devdata(master);
|
struct sun4i_spi *sspi = spi_master_get_devdata(master);
|
||||||
unsigned int mclk_rate, div, timeout;
|
unsigned int mclk_rate, div, timeout;
|
||||||
|
unsigned int start, end, tx_time;
|
||||||
unsigned int tx_len = 0;
|
unsigned int tx_len = 0;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
u32 reg;
|
u32 reg;
|
||||||
|
|
||||||
/* We don't support transfer larger than the FIFO */
|
/* We don't support transfer larger than the FIFO */
|
||||||
if (tfr->len > SUN4I_FIFO_DEPTH)
|
if (tfr->len > SUN4I_FIFO_DEPTH)
|
||||||
return -EINVAL;
|
return -EMSGSIZE;
|
||||||
|
|
||||||
|
if (tfr->tx_buf && tfr->len >= SUN4I_FIFO_DEPTH)
|
||||||
|
return -EMSGSIZE;
|
||||||
|
|
||||||
reinit_completion(&sspi->done);
|
reinit_completion(&sspi->done);
|
||||||
sspi->tx_buf = tfr->tx_buf;
|
sspi->tx_buf = tfr->tx_buf;
|
||||||
|
@ -269,8 +273,12 @@ static int sun4i_spi_transfer_one(struct spi_master *master,
|
||||||
sun4i_spi_write(sspi, SUN4I_BURST_CNT_REG, SUN4I_BURST_CNT(tfr->len));
|
sun4i_spi_write(sspi, SUN4I_BURST_CNT_REG, SUN4I_BURST_CNT(tfr->len));
|
||||||
sun4i_spi_write(sspi, SUN4I_XMIT_CNT_REG, SUN4I_XMIT_CNT(tx_len));
|
sun4i_spi_write(sspi, SUN4I_XMIT_CNT_REG, SUN4I_XMIT_CNT(tx_len));
|
||||||
|
|
||||||
/* Fill the TX FIFO */
|
/*
|
||||||
sun4i_spi_fill_fifo(sspi, SUN4I_FIFO_DEPTH);
|
* Fill the TX FIFO
|
||||||
|
* Filling the FIFO fully causes timeout for some reason
|
||||||
|
* at least on spi2 on A10s
|
||||||
|
*/
|
||||||
|
sun4i_spi_fill_fifo(sspi, SUN4I_FIFO_DEPTH - 1);
|
||||||
|
|
||||||
/* Enable the interrupts */
|
/* Enable the interrupts */
|
||||||
sun4i_spi_write(sspi, SUN4I_INT_CTL_REG, SUN4I_INT_CTL_TC);
|
sun4i_spi_write(sspi, SUN4I_INT_CTL_REG, SUN4I_INT_CTL_TC);
|
||||||
|
@ -279,9 +287,16 @@ static int sun4i_spi_transfer_one(struct spi_master *master,
|
||||||
reg = sun4i_spi_read(sspi, SUN4I_CTL_REG);
|
reg = sun4i_spi_read(sspi, SUN4I_CTL_REG);
|
||||||
sun4i_spi_write(sspi, SUN4I_CTL_REG, reg | SUN4I_CTL_XCH);
|
sun4i_spi_write(sspi, SUN4I_CTL_REG, reg | SUN4I_CTL_XCH);
|
||||||
|
|
||||||
|
tx_time = max(tfr->len * 8 * 2 / (tfr->speed_hz / 1000), 100U);
|
||||||
|
start = jiffies;
|
||||||
timeout = wait_for_completion_timeout(&sspi->done,
|
timeout = wait_for_completion_timeout(&sspi->done,
|
||||||
msecs_to_jiffies(1000));
|
msecs_to_jiffies(tx_time));
|
||||||
|
end = jiffies;
|
||||||
if (!timeout) {
|
if (!timeout) {
|
||||||
|
dev_warn(&master->dev,
|
||||||
|
"%s: timeout transferring %u bytes@%iHz for %i(%i)ms",
|
||||||
|
dev_name(&spi->dev), tfr->len, tfr->speed_hz,
|
||||||
|
jiffies_to_msecs(end - start), tx_time);
|
||||||
ret = -ETIMEDOUT;
|
ret = -ETIMEDOUT;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
|
@ -160,6 +160,7 @@ static int sun6i_spi_transfer_one(struct spi_master *master,
|
||||||
{
|
{
|
||||||
struct sun6i_spi *sspi = spi_master_get_devdata(master);
|
struct sun6i_spi *sspi = spi_master_get_devdata(master);
|
||||||
unsigned int mclk_rate, div, timeout;
|
unsigned int mclk_rate, div, timeout;
|
||||||
|
unsigned int start, end, tx_time;
|
||||||
unsigned int tx_len = 0;
|
unsigned int tx_len = 0;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
u32 reg;
|
u32 reg;
|
||||||
|
@ -269,9 +270,16 @@ static int sun6i_spi_transfer_one(struct spi_master *master,
|
||||||
reg = sun6i_spi_read(sspi, SUN6I_TFR_CTL_REG);
|
reg = sun6i_spi_read(sspi, SUN6I_TFR_CTL_REG);
|
||||||
sun6i_spi_write(sspi, SUN6I_TFR_CTL_REG, reg | SUN6I_TFR_CTL_XCH);
|
sun6i_spi_write(sspi, SUN6I_TFR_CTL_REG, reg | SUN6I_TFR_CTL_XCH);
|
||||||
|
|
||||||
|
tx_time = max(tfr->len * 8 * 2 / (tfr->speed_hz / 1000), 100U);
|
||||||
|
start = jiffies;
|
||||||
timeout = wait_for_completion_timeout(&sspi->done,
|
timeout = wait_for_completion_timeout(&sspi->done,
|
||||||
msecs_to_jiffies(1000));
|
msecs_to_jiffies(tx_time));
|
||||||
|
end = jiffies;
|
||||||
if (!timeout) {
|
if (!timeout) {
|
||||||
|
dev_warn(&master->dev,
|
||||||
|
"%s: timeout transferring %u bytes@%iHz for %i(%i)ms",
|
||||||
|
dev_name(&spi->dev), tfr->len, tfr->speed_hz,
|
||||||
|
jiffies_to_msecs(end - start), tx_time);
|
||||||
ret = -ETIMEDOUT;
|
ret = -ETIMEDOUT;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
|
@ -646,6 +646,13 @@ free_master:
|
||||||
|
|
||||||
static int ti_qspi_remove(struct platform_device *pdev)
|
static int ti_qspi_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
|
struct ti_qspi *qspi = platform_get_drvdata(pdev);
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
rc = spi_master_suspend(qspi->master);
|
||||||
|
if (rc)
|
||||||
|
return rc;
|
||||||
|
|
||||||
pm_runtime_put_sync(&pdev->dev);
|
pm_runtime_put_sync(&pdev->dev);
|
||||||
pm_runtime_disable(&pdev->dev);
|
pm_runtime_disable(&pdev->dev);
|
||||||
|
|
||||||
|
|
|
@ -594,7 +594,7 @@ static ssize_t sca3000_read_frequency(struct device *dev,
|
||||||
goto error_ret_mut;
|
goto error_ret_mut;
|
||||||
ret = sca3000_read_ctrl_reg(st, SCA3000_REG_CTRL_SEL_OUT_CTRL);
|
ret = sca3000_read_ctrl_reg(st, SCA3000_REG_CTRL_SEL_OUT_CTRL);
|
||||||
mutex_unlock(&st->lock);
|
mutex_unlock(&st->lock);
|
||||||
if (ret)
|
if (ret < 0)
|
||||||
goto error_ret;
|
goto error_ret;
|
||||||
val = ret;
|
val = ret;
|
||||||
if (base_freq > 0)
|
if (base_freq > 0)
|
||||||
|
|
|
@ -21,7 +21,7 @@ static int ad7606_spi_read_block(struct device *dev,
|
||||||
{
|
{
|
||||||
struct spi_device *spi = to_spi_device(dev);
|
struct spi_device *spi = to_spi_device(dev);
|
||||||
int i, ret;
|
int i, ret;
|
||||||
unsigned short *data;
|
unsigned short *data = buf;
|
||||||
__be16 *bdata = buf;
|
__be16 *bdata = buf;
|
||||||
|
|
||||||
ret = spi_read(spi, buf, count * 2);
|
ret = spi_read(spi, buf, count * 2);
|
||||||
|
|
|
@ -444,10 +444,10 @@ static ssize_t ad5933_store(struct device *dev,
|
||||||
st->settling_cycles = val;
|
st->settling_cycles = val;
|
||||||
|
|
||||||
/* 2x, 4x handling, see datasheet */
|
/* 2x, 4x handling, see datasheet */
|
||||||
if (val > 511)
|
if (val > 1022)
|
||||||
val = (val >> 1) | (1 << 9);
|
|
||||||
else if (val > 1022)
|
|
||||||
val = (val >> 2) | (3 << 9);
|
val = (val >> 2) | (3 << 9);
|
||||||
|
else if (val > 511)
|
||||||
|
val = (val >> 1) | (1 << 9);
|
||||||
|
|
||||||
dat = cpu_to_be16(val);
|
dat = cpu_to_be16(val);
|
||||||
ret = ad5933_i2c_write(st->client,
|
ret = ad5933_i2c_write(st->client,
|
||||||
|
|
|
@ -667,8 +667,11 @@ static void pty_unix98_remove(struct tty_driver *driver, struct tty_struct *tty)
|
||||||
fsi = tty->driver_data;
|
fsi = tty->driver_data;
|
||||||
else
|
else
|
||||||
fsi = tty->link->driver_data;
|
fsi = tty->link->driver_data;
|
||||||
devpts_kill_index(fsi, tty->index);
|
|
||||||
devpts_release(fsi);
|
if (fsi) {
|
||||||
|
devpts_kill_index(fsi, tty->index);
|
||||||
|
devpts_release(fsi);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct tty_operations ptm_unix98_ops = {
|
static const struct tty_operations ptm_unix98_ops = {
|
||||||
|
|
|
@ -750,6 +750,7 @@ static void visual_init(struct vc_data *vc, int num, int init)
|
||||||
vc->vc_complement_mask = 0;
|
vc->vc_complement_mask = 0;
|
||||||
vc->vc_can_do_color = 0;
|
vc->vc_can_do_color = 0;
|
||||||
vc->vc_panic_force_write = false;
|
vc->vc_panic_force_write = false;
|
||||||
|
vc->vc_cur_blink_ms = DEFAULT_CURSOR_BLINK_MS;
|
||||||
vc->vc_sw->con_init(vc, init);
|
vc->vc_sw->con_init(vc, init);
|
||||||
if (!vc->vc_complement_mask)
|
if (!vc->vc_complement_mask)
|
||||||
vc->vc_complement_mask = vc->vc_can_do_color ? 0x7700 : 0x0800;
|
vc->vc_complement_mask = vc->vc_can_do_color ? 0x7700 : 0x0800;
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
* 675 Mass Ave, Cambridge, MA 02139, USA.
|
* 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <linux/module.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
#include <linux/mutex.h>
|
#include <linux/mutex.h>
|
||||||
|
@ -450,3 +451,4 @@ int otg_statemachine(struct otg_fsm *fsm)
|
||||||
return fsm->state_changed;
|
return fsm->state_changed;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(otg_statemachine);
|
EXPORT_SYMBOL_GPL(otg_statemachine);
|
||||||
|
MODULE_LICENSE("GPL");
|
||||||
|
|
|
@ -2598,26 +2598,23 @@ EXPORT_SYMBOL_GPL(usb_create_hcd);
|
||||||
* Don't deallocate the bandwidth_mutex until the last shared usb_hcd is
|
* Don't deallocate the bandwidth_mutex until the last shared usb_hcd is
|
||||||
* deallocated.
|
* deallocated.
|
||||||
*
|
*
|
||||||
* Make sure to only deallocate the bandwidth_mutex when the primary HCD is
|
* Make sure to deallocate the bandwidth_mutex only when the last HCD is
|
||||||
* freed. When hcd_release() is called for either hcd in a peer set
|
* freed. When hcd_release() is called for either hcd in a peer set,
|
||||||
* invalidate the peer's ->shared_hcd and ->primary_hcd pointers to
|
* invalidate the peer's ->shared_hcd and ->primary_hcd pointers.
|
||||||
* block new peering attempts
|
|
||||||
*/
|
*/
|
||||||
static void hcd_release(struct kref *kref)
|
static void hcd_release(struct kref *kref)
|
||||||
{
|
{
|
||||||
struct usb_hcd *hcd = container_of (kref, struct usb_hcd, kref);
|
struct usb_hcd *hcd = container_of (kref, struct usb_hcd, kref);
|
||||||
|
|
||||||
mutex_lock(&usb_port_peer_mutex);
|
mutex_lock(&usb_port_peer_mutex);
|
||||||
if (usb_hcd_is_primary_hcd(hcd)) {
|
|
||||||
kfree(hcd->address0_mutex);
|
|
||||||
kfree(hcd->bandwidth_mutex);
|
|
||||||
}
|
|
||||||
if (hcd->shared_hcd) {
|
if (hcd->shared_hcd) {
|
||||||
struct usb_hcd *peer = hcd->shared_hcd;
|
struct usb_hcd *peer = hcd->shared_hcd;
|
||||||
|
|
||||||
peer->shared_hcd = NULL;
|
peer->shared_hcd = NULL;
|
||||||
if (peer->primary_hcd == hcd)
|
peer->primary_hcd = NULL;
|
||||||
peer->primary_hcd = NULL;
|
} else {
|
||||||
|
kfree(hcd->address0_mutex);
|
||||||
|
kfree(hcd->bandwidth_mutex);
|
||||||
}
|
}
|
||||||
mutex_unlock(&usb_port_peer_mutex);
|
mutex_unlock(&usb_port_peer_mutex);
|
||||||
kfree(hcd);
|
kfree(hcd);
|
||||||
|
|
|
@ -233,7 +233,8 @@ static int st_dwc3_probe(struct platform_device *pdev)
|
||||||
dev_vdbg(&pdev->dev, "glue-logic addr 0x%p, syscfg-reg offset 0x%x\n",
|
dev_vdbg(&pdev->dev, "glue-logic addr 0x%p, syscfg-reg offset 0x%x\n",
|
||||||
dwc3_data->glue_base, dwc3_data->syscfg_reg_off);
|
dwc3_data->glue_base, dwc3_data->syscfg_reg_off);
|
||||||
|
|
||||||
dwc3_data->rstc_pwrdn = devm_reset_control_get(dev, "powerdown");
|
dwc3_data->rstc_pwrdn =
|
||||||
|
devm_reset_control_get_exclusive(dev, "powerdown");
|
||||||
if (IS_ERR(dwc3_data->rstc_pwrdn)) {
|
if (IS_ERR(dwc3_data->rstc_pwrdn)) {
|
||||||
dev_err(&pdev->dev, "could not get power controller\n");
|
dev_err(&pdev->dev, "could not get power controller\n");
|
||||||
ret = PTR_ERR(dwc3_data->rstc_pwrdn);
|
ret = PTR_ERR(dwc3_data->rstc_pwrdn);
|
||||||
|
@ -243,7 +244,8 @@ static int st_dwc3_probe(struct platform_device *pdev)
|
||||||
/* Manage PowerDown */
|
/* Manage PowerDown */
|
||||||
reset_control_deassert(dwc3_data->rstc_pwrdn);
|
reset_control_deassert(dwc3_data->rstc_pwrdn);
|
||||||
|
|
||||||
dwc3_data->rstc_rst = devm_reset_control_get(dev, "softreset");
|
dwc3_data->rstc_rst =
|
||||||
|
devm_reset_control_get_shared(dev, "softreset");
|
||||||
if (IS_ERR(dwc3_data->rstc_rst)) {
|
if (IS_ERR(dwc3_data->rstc_rst)) {
|
||||||
dev_err(&pdev->dev, "could not get reset controller\n");
|
dev_err(&pdev->dev, "could not get reset controller\n");
|
||||||
ret = PTR_ERR(dwc3_data->rstc_rst);
|
ret = PTR_ERR(dwc3_data->rstc_rst);
|
||||||
|
|
|
@ -206,7 +206,8 @@ static int st_ehci_platform_probe(struct platform_device *dev)
|
||||||
priv->clk48 = NULL;
|
priv->clk48 = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
priv->pwr = devm_reset_control_get_optional(&dev->dev, "power");
|
priv->pwr =
|
||||||
|
devm_reset_control_get_optional_shared(&dev->dev, "power");
|
||||||
if (IS_ERR(priv->pwr)) {
|
if (IS_ERR(priv->pwr)) {
|
||||||
err = PTR_ERR(priv->pwr);
|
err = PTR_ERR(priv->pwr);
|
||||||
if (err == -EPROBE_DEFER)
|
if (err == -EPROBE_DEFER)
|
||||||
|
@ -214,7 +215,8 @@ static int st_ehci_platform_probe(struct platform_device *dev)
|
||||||
priv->pwr = NULL;
|
priv->pwr = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
priv->rst = devm_reset_control_get_optional(&dev->dev, "softreset");
|
priv->rst =
|
||||||
|
devm_reset_control_get_optional_shared(&dev->dev, "softreset");
|
||||||
if (IS_ERR(priv->rst)) {
|
if (IS_ERR(priv->rst)) {
|
||||||
err = PTR_ERR(priv->rst);
|
err = PTR_ERR(priv->rst);
|
||||||
if (err == -EPROBE_DEFER)
|
if (err == -EPROBE_DEFER)
|
||||||
|
|
|
@ -188,13 +188,15 @@ static int st_ohci_platform_probe(struct platform_device *dev)
|
||||||
priv->clk48 = NULL;
|
priv->clk48 = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
priv->pwr = devm_reset_control_get_optional(&dev->dev, "power");
|
priv->pwr =
|
||||||
|
devm_reset_control_get_optional_shared(&dev->dev, "power");
|
||||||
if (IS_ERR(priv->pwr)) {
|
if (IS_ERR(priv->pwr)) {
|
||||||
err = PTR_ERR(priv->pwr);
|
err = PTR_ERR(priv->pwr);
|
||||||
goto err_put_clks;
|
goto err_put_clks;
|
||||||
}
|
}
|
||||||
|
|
||||||
priv->rst = devm_reset_control_get_optional(&dev->dev, "softreset");
|
priv->rst =
|
||||||
|
devm_reset_control_get_optional_shared(&dev->dev, "softreset");
|
||||||
if (IS_ERR(priv->rst)) {
|
if (IS_ERR(priv->rst)) {
|
||||||
err = PTR_ERR(priv->rst);
|
err = PTR_ERR(priv->rst);
|
||||||
goto err_put_clks;
|
goto err_put_clks;
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue