1295011Sandrew/*
2295011Sandrew *  BSD LICENSE
3295011Sandrew *
4295011Sandrew *  Copyright(c) 2015 Broadcom Corporation.  All rights reserved.
5295011Sandrew *
6295011Sandrew *  Redistribution and use in source and binary forms, with or without
7295011Sandrew *  modification, are permitted provided that the following conditions
8295011Sandrew *  are met:
9295011Sandrew *
10295011Sandrew *	* Redistributions of source code must retain the above copyright
11295011Sandrew *	  notice, this list of conditions and the following disclaimer.
12295011Sandrew *	* Redistributions in binary form must reproduce the above copyright
13295011Sandrew *	  notice, this list of conditions and the following disclaimer in
14295011Sandrew *	  the documentation and/or other materials provided with the
15295011Sandrew *	  distribution.
16295011Sandrew *	* Neither the name of Broadcom Corporation nor the names of its
17295011Sandrew *	  contributors may be used to endorse or promote products derived
18295011Sandrew *	  from this software without specific prior written permission.
19295011Sandrew *
20295011Sandrew *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21295011Sandrew *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22295011Sandrew *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23295011Sandrew *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24295011Sandrew *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25295011Sandrew *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26295011Sandrew *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27295011Sandrew *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28295011Sandrew *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29295011Sandrew *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30295011Sandrew * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31295011Sandrew */
32295011Sandrew
33295011Sandrew#ifndef _CLOCK_BCM_NSP_H
34295011Sandrew#define _CLOCK_BCM_NSP_H
35295011Sandrew
36295011Sandrew/* GENPLL clock channel ID */
37295011Sandrew#define BCM_NSP_GENPLL			0
38295011Sandrew#define BCM_NSP_GENPLL_PHY_CLK		1
39295011Sandrew#define BCM_NSP_GENPLL_ENET_SW_CLK	2
40295011Sandrew#define BCM_NSP_GENPLL_USB_PHY_REF_CLK	3
41295011Sandrew#define BCM_NSP_GENPLL_IPROCFAST_CLK	4
42295011Sandrew#define BCM_NSP_GENPLL_SATA1_CLK	5
43295011Sandrew#define BCM_NSP_GENPLL_SATA2_CLK	6
44295011Sandrew
45295011Sandrew/* LCPLL0 clock channel ID */
46295011Sandrew#define BCM_NSP_LCPLL0			0
47295011Sandrew#define BCM_NSP_LCPLL0_PCIE_PHY_REF_CLK	1
48295011Sandrew#define BCM_NSP_LCPLL0_SDIO_CLK		2
49295011Sandrew#define BCM_NSP_LCPLL0_DDR_PHY_CLK	3
50295011Sandrew
51295011Sandrew#endif /* _CLOCK_BCM_NSP_H */
52