Deleted Added
full compact
ar71xx_cpudef.h (234907) ar71xx_cpudef.h (248781)
1/*-
2 * Copyright (c) 2010 Adrian Chadd
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 10 unchanged lines hidden (view full) ---

19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
1/*-
2 * Copyright (c) 2010 Adrian Chadd
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 10 unchanged lines hidden (view full) ---

19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
27/* $FreeBSD: head/sys/mips/atheros/ar71xx_cpudef.h 234907 2012-05-02 04:51:43Z adrian $ */
27/* $FreeBSD: head/sys/mips/atheros/ar71xx_cpudef.h 248781 2013-03-27 03:33:19Z adrian $ */
28
29#ifndef __AR71XX_CPUDEF_H__
30#define __AR71XX_CPUDEF_H__
31
32struct ar71xx_cpu_def {
33 void (* detect_mem_size) (void);
34 void (* detect_sys_frequency) (void);
35 void (* ar71xx_chip_device_stop) (uint32_t);

--- 76 unchanged lines hidden (view full) ---

112}
113
114static inline void ar71xx_device_ddr_flush_ip2(void)
115{
116 ar71xx_cpu_ops->ar71xx_chip_ddr_flush_ip2();
117}
118
119/* XXX shouldn't be here! */
28
29#ifndef __AR71XX_CPUDEF_H__
30#define __AR71XX_CPUDEF_H__
31
32struct ar71xx_cpu_def {
33 void (* detect_mem_size) (void);
34 void (* detect_sys_frequency) (void);
35 void (* ar71xx_chip_device_stop) (uint32_t);

--- 76 unchanged lines hidden (view full) ---

112}
113
114static inline void ar71xx_device_ddr_flush_ip2(void)
115{
116 ar71xx_cpu_ops->ar71xx_chip_ddr_flush_ip2();
117}
118
119/* XXX shouldn't be here! */
120extern uint32_t u_ar71xx_refclk;
120extern uint32_t u_ar71xx_cpu_freq;
121extern uint32_t u_ar71xx_ahb_freq;
122extern uint32_t u_ar71xx_ddr_freq;
123
121extern uint32_t u_ar71xx_cpu_freq;
122extern uint32_t u_ar71xx_ahb_freq;
123extern uint32_t u_ar71xx_ddr_freq;
124
125static inline uint64_t ar71xx_refclk(void) { return u_ar71xx_refclk; }
124static inline uint64_t ar71xx_cpu_freq(void) { return u_ar71xx_cpu_freq; }
125static inline uint64_t ar71xx_ahb_freq(void) { return u_ar71xx_ahb_freq; }
126static inline uint64_t ar71xx_ddr_freq(void) { return u_ar71xx_ddr_freq; }
127
128#endif
126static inline uint64_t ar71xx_cpu_freq(void) { return u_ar71xx_cpu_freq; }
127static inline uint64_t ar71xx_ahb_freq(void) { return u_ar71xx_ahb_freq; }
128static inline uint64_t ar71xx_ddr_freq(void) { return u_ar71xx_ddr_freq; }
129
130#endif