HelenOS sources

root/kernel/genarch/include/genarch/drivers/am335x/cm_dpll_regs.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


/*
 * Copyright (c) 2013 Maurizio Lombardi
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * - Redistributions of source code must retain the above copyright
 *   notice, this list of conditions and the following disclaimer.
 * - Redistributions in binary form must reproduce the above copyright
 *   notice, this list of conditions and the following disclaimer in the
 *   documentation and/or other materials provided with the distribution.
 * - The name of the author may not be used to endorse or promote products
 *   derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
/** @addtogroup kernel_genarch
 * @{
 */
/**
 * @file
 * @brief Texas Instruments AM335x DPLL registers.
 */

#ifndef _KERN_AM335X_CM_DPLL_REGS_H_
#define _KERN_AM335X_CM_DPLL_REGS_H_

typedef enum {
        CLK_SRC_TCLKIN = 0x00,
        CLK_SRC_M_OSC,
        CLK_SRC_32_KHZ
} am335x_clk_src_t;

typedef struct am335x_cm_dpll_regs {

        ioport32_t const pad0;

        ioport32_t clksel_timer7;
        ioport32_t clksel_timer2;
        ioport32_t clksel_timer3;
        ioport32_t clksel_timer4;

        ioport32_t clksel_mac;
#define AM335x_CM_CLKSEL_MII_FLAG (1 << 2)

        ioport32_t clksel_timer5;
        ioport32_t clksel_timer6;

        ioport32_t clksel_cpts_rft;

        ioport32_t const pad1;

        ioport32_t clksel_timer1ms;
#define AM335x_CM_CLKSEL_TIMER1MS_CLKMOSC      0x00
#define AM335x_CM_CLKSEL_TIMER1MS_CLK32KHZ     0x01
#define AM335x_CM_CLKSEL_TIMER1MS_TCLKIN       0x02
#define AM335x_CM_CLKSEL_TIMER1MS_CLKRC32KHZ   0x03
#define AM335x_CM_CLKSEL_TIMER1MS_32KHZCRYSTAL 0x04

        ioport32_t clksel_gfx_fclk;
#define AM335x_CM_CLKSEL_GFX_FCLK_CLKDIV_FLAG  (1 << 0)
#define AM335x_CM_CLKSEL_GFX_FCLK_CLKSEL_FLAG  (1 << 1)

        ioport32_t clksel_pru_icss_ocp;
        ioport32_t clksel_lcdc_pixel;
        ioport32_t clksel_wdt1;
        ioport32_t clksel_gpio0_db;

} am335x_cm_dpll_regs_t;

#endif

/**
 * @}
 */

/* [<][>][^][v][top][bottom][index][help] */
HelenOS homepage, sources at GitHub