source: rtems/c/src/lib/libbsp/arm/shared/include/arm-pl111-fb.h @ c499856

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/**
2 *  @file
3 *
4 *  @ingroup arm_shared
5 *
6 *  @brief ARM PL111 FB Support
7 */
8
9/*
10 * Copyright (c) 2013 embedded brains GmbH.  All rights reserved.
11 *
12 *  embedded brains GmbH
13 *  Dornierstr. 4
14 *  82178 Puchheim
15 *  Germany
16 *  <info@embedded-brains.de>
17 *
18 * The license and distribution terms for this file may be
19 * found in the file LICENSE in this distribution or at
20 * http://www.rtems.org/license/LICENSE.
21 */
22
23#ifndef LIBBSP_ARM_SHARED_ARM_PL111_FB_H
24#define LIBBSP_ARM_SHARED_ARM_PL111_FB_H
25
26#include <bsp/arm-pl111-regs.h>
27
28typedef struct pl111_fb_config {
29  volatile pl111 *regs;
30  uint32_t timing0;
31  uint32_t timing1;
32  uint32_t timing2;
33  uint32_t timing3;
34  uint32_t control;
35  uint32_t power_delay_in_us;
36  void (*set_up)(const struct pl111_fb_config *cfg);
37  void (*pins_set_up)(const struct pl111_fb_config *cfg);
38  void (*pins_tear_down)(const struct pl111_fb_config *cfg);
39  void (*tear_down)(const struct pl111_fb_config *cfg);
40} pl111_fb_config;
41
42const pl111_fb_config *arm_pl111_fb_get_config(void);
43
44#endif /* LIBBSP_ARM_SHARED_ARM_PL111_FB_H */
Note: See TracBrowser for help on using the repository browser.