1254885Sdumbbell/*
2254885Sdumbbell * Copyright 2008 Advanced Micro Devices, Inc.
3254885Sdumbbell * Copyright 2008 Red Hat Inc.
4254885Sdumbbell * Copyright 2009 Jerome Glisse.
5254885Sdumbbell *
6254885Sdumbbell * Permission is hereby granted, free of charge, to any person obtaining a
7254885Sdumbbell * copy of this software and associated documentation files (the "Software"),
8254885Sdumbbell * to deal in the Software without restriction, including without limitation
9254885Sdumbbell * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10254885Sdumbbell * and/or sell copies of the Software, and to permit persons to whom the
11254885Sdumbbell * Software is furnished to do so, subject to the following conditions:
12254885Sdumbbell *
13254885Sdumbbell * The above copyright notice and this permission notice shall be included in
14254885Sdumbbell * all copies or substantial portions of the Software.
15254885Sdumbbell *
16254885Sdumbbell * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17254885Sdumbbell * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18254885Sdumbbell * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19254885Sdumbbell * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20254885Sdumbbell * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21254885Sdumbbell * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22254885Sdumbbell * OTHER DEALINGS IN THE SOFTWARE.
23254885Sdumbbell *
24254885Sdumbbell * Authors: Dave Airlie
25254885Sdumbbell *          Alex Deucher
26254885Sdumbbell *          Jerome Glisse
27254885Sdumbbell */
28254885Sdumbbell#ifndef __RV350D_H__
29254885Sdumbbell#define __RV350D_H__
30254885Sdumbbell
31254885Sdumbbell#include <sys/cdefs.h>
32254885Sdumbbell__FBSDID("$FreeBSD$");
33254885Sdumbbell
34254885Sdumbbell/* RV350, RV380 registers */
35254885Sdumbbell/* #define R_00000D_SCLK_CNTL                           0x00000D */
36254885Sdumbbell#define   S_00000D_FORCE_VAP(x)                        (((x) & 0x1) << 21)
37254885Sdumbbell#define   G_00000D_FORCE_VAP(x)                        (((x) >> 21) & 0x1)
38254885Sdumbbell#define   C_00000D_FORCE_VAP                           0xFFDFFFFF
39254885Sdumbbell#define   S_00000D_FORCE_SR(x)                         (((x) & 0x1) << 25)
40254885Sdumbbell#define   G_00000D_FORCE_SR(x)                         (((x) >> 25) & 0x1)
41254885Sdumbbell#define   C_00000D_FORCE_SR                            0xFDFFFFFF
42254885Sdumbbell#define   S_00000D_FORCE_PX(x)                         (((x) & 0x1) << 26)
43254885Sdumbbell#define   G_00000D_FORCE_PX(x)                         (((x) >> 26) & 0x1)
44254885Sdumbbell#define   C_00000D_FORCE_PX                            0xFBFFFFFF
45254885Sdumbbell#define   S_00000D_FORCE_TX(x)                         (((x) & 0x1) << 27)
46254885Sdumbbell#define   G_00000D_FORCE_TX(x)                         (((x) >> 27) & 0x1)
47254885Sdumbbell#define   C_00000D_FORCE_TX                            0xF7FFFFFF
48254885Sdumbbell#define   S_00000D_FORCE_US(x)                         (((x) & 0x1) << 28)
49254885Sdumbbell#define   G_00000D_FORCE_US(x)                         (((x) >> 28) & 0x1)
50254885Sdumbbell#define   C_00000D_FORCE_US                            0xEFFFFFFF
51254885Sdumbbell#define   S_00000D_FORCE_SU(x)                         (((x) & 0x1) << 30)
52254885Sdumbbell#define   G_00000D_FORCE_SU(x)                         (((x) >> 30) & 0x1)
53254885Sdumbbell#define   C_00000D_FORCE_SU                            0xBFFFFFFF
54254885Sdumbbell
55254885Sdumbbell#endif
56