mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-14 17:36:44 +07:00
24a70cf2b2
If SCB exists in select blackfin cpu, developer can change the SCB priority in kernel configuration. Signed-off-by: Sonic Zhang <sonic.zhang@analog.com> Signed-off-by: Steven Miao <realmz6@gmail.com>
22 lines
445 B
C
22 lines
445 B
C
/*
|
|
* arch/blackfin/mach-common/scb-init.c - reprogram system cross bar priority
|
|
*
|
|
* Copyright 2012 Analog Devices Inc.
|
|
*
|
|
* Licensed under the GPL-2 or later.
|
|
*/
|
|
|
|
#define SCB_SLOT_OFFSET 24
|
|
#define SCB_MI_MAX_SLOT 32
|
|
|
|
struct scb_mi_prio {
|
|
unsigned long scb_mi_arbr;
|
|
unsigned long scb_mi_arbw;
|
|
unsigned char scb_mi_slots;
|
|
unsigned char scb_mi_prio[SCB_MI_MAX_SLOT];
|
|
};
|
|
|
|
extern struct scb_mi_prio scb_data[];
|
|
|
|
extern void init_scb(void);
|