File: scb.h

package info (click to toggle)
linux 3.16.39-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 757,956 kB
file content (21 lines) | stat: -rw-r--r-- 445 bytes parent folder | download | duplicates (24)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * 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);