summaryrefslogtreecommitdiffstats
path: root/src/usr/hwpf/hwp/occ/occ_procedures/p8_occ_control.H
blob: 72454c85955f371eae322b8a02d13a32b37fc3ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/hwpf/hwp/occ/occ_procedures/p8_occ_control.H $        */
/*                                                                        */
/* IBM CONFIDENTIAL                                                       */
/*                                                                        */
/* COPYRIGHT International Business Machines Corp. 2013,2014              */
/*                                                                        */
/* p1                                                                     */
/*                                                                        */
/* Object Code Only (OCO) source materials                                */
/* Licensed Internal Code Source Materials                                */
/* IBM HostBoot Licensed Internal Code                                    */
/*                                                                        */
/* The source code for this program is not published or otherwise         */
/* divested of its trade secrets, irrespective of what has been           */
/* deposited with the U.S. Copyright Office.                              */
/*                                                                        */
/* Origin: 30                                                             */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */
// $Id: p8_occ_control.H,v 1.4 2014/04/21 14:27:53 bcbrock Exp $
// $Source: /afs/awd/projects/eclipz/KnowledgeBase/.cvsroot/eclipz/chips/p8/working/procedures/ipl/fapi/p8_occ_control.H,v $
#ifndef _P8_OCC_CONTROL_H_
#define _P8_OCC_CONTROL_H_

#include <fapi.H>

// function pointer typedef definition for HWP call support
typedef fapi::ReturnCode (*p8_occ_control_FP_t) (const fapi::Target&, 
                                                    const uint8_t, 
                                                    const uint8_t);

extern "C" {

//------------------------------------------------------------------------------
// Function prototype
//------------------------------------------------------------------------------

fapi::ReturnCode p8_occ_control(const fapi::Target& i_target, 
                                         const uint8_t i_ppc405_reset_ctrl,
                                         const uint8_t i_ppc405_boot_ctrl);
// ---------
// Constants
// ---------
const uint8_t PPC405_RESET_NULL         = 0x00; 
const uint8_t PPC405_RESET_OFF          = 0x01;
const uint8_t PPC405_RESET_ON           = 0x02;
const uint8_t PPC405_HALT_OFF           = 0x03;
const uint8_t PPC405_HALT_ON            = 0x04;
const uint8_t PPC405_RESET_SEQUENCE     = 0x05;

const uint8_t PPC405_BOOT_NULL          = 0x00;
const uint8_t PPC405_BOOT_SRAM          = 0x01;
const uint8_t PPC405_BOOT_MEM           = 0x02;
const uint8_t PPC405_BOOT_OLD           = 0x03;

const uint32_t PPC405_BRANCH_SRAM_INSTR = 0x4BF80042;  // Branch Absolute 0xFFF80040  (boot from sram)
const uint32_t PPC405_BRANCH_MEM_INSTR  = 0x48000042;  // Branch Absolute 0x00000040  (boot from memory)
const uint32_t PPC405_BRANCH_OLD_INSTR  = 0x4BFFFFF0;  // Branch Relative -16         (boot from sram)

} // extern "C"

#endif 
OpenPOWER on IntegriCloud