inotify: fix race
[linux-2.6.22.y-op.git] / include / asm-powerpc / ucc.h
blobafe3076bdc03d862465dcf181772c6672f704c50
1 /*
2 * Copyright (C) 2006 Freescale Semicondutor, Inc. All rights reserved.
4 * Authors: Shlomi Gridish <gridish@freescale.com>
5 * Li Yang <leoli@freescale.com>
7 * Description:
8 * Internal header file for UCC unit routines.
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
15 #ifndef __UCC_H__
16 #define __UCC_H__
18 #include <asm/immap_qe.h>
19 #include <asm/qe.h>
21 #define STATISTICS
23 #define UCC_MAX_NUM 8
25 /* Slow or fast type for UCCs.
27 enum ucc_speed_type {
28 UCC_SPEED_TYPE_FAST, UCC_SPEED_TYPE_SLOW
31 /* Initial UCCs Parameter RAM address relative to: MEM_MAP_BASE (IMMR).
33 enum ucc_pram_initial_offset {
34 UCC_PRAM_OFFSET_UCC1 = 0x8400,
35 UCC_PRAM_OFFSET_UCC2 = 0x8500,
36 UCC_PRAM_OFFSET_UCC3 = 0x8600,
37 UCC_PRAM_OFFSET_UCC4 = 0x9000,
38 UCC_PRAM_OFFSET_UCC5 = 0x8000,
39 UCC_PRAM_OFFSET_UCC6 = 0x8100,
40 UCC_PRAM_OFFSET_UCC7 = 0x8200,
41 UCC_PRAM_OFFSET_UCC8 = 0x8300
44 /* ucc_set_type
45 * Sets UCC to slow or fast mode.
47 * ucc_num - (In) number of UCC (0-7).
48 * regs - (In) pointer to registers base for the UCC.
49 * speed - (In) slow or fast mode for UCC.
51 int ucc_set_type(int ucc_num, struct ucc_common *regs,
52 enum ucc_speed_type speed);
54 /* ucc_init_guemr
55 * Init the Guemr register.
57 * regs - (In) pointer to registers base for the UCC.
59 int ucc_init_guemr(struct ucc_common *regs);
61 int ucc_set_qe_mux_mii_mng(int ucc_num);
63 int ucc_set_qe_mux_rxtx(int ucc_num, enum qe_clock clock, enum comm_dir mode);
65 int ucc_mux_set_grant_tsa_bkpt(int ucc_num, int set, u32 mask);
67 /* QE MUX clock routing for UCC
69 static inline int ucc_set_qe_mux_grant(int ucc_num, int set)
71 return ucc_mux_set_grant_tsa_bkpt(ucc_num, set, QE_CMXUCR_GRANT);
74 static inline int ucc_set_qe_mux_tsa(int ucc_num, int set)
76 return ucc_mux_set_grant_tsa_bkpt(ucc_num, set, QE_CMXUCR_TSA);
79 static inline int ucc_set_qe_mux_bkpt(int ucc_num, int set)
81 return ucc_mux_set_grant_tsa_bkpt(ucc_num, set, QE_CMXUCR_BKPT);
84 #endif /* __UCC_H__ */