summaryrefslogtreecommitdiffstats
path: root/puppet/services/manila-backend-cephfs.yaml
blob: 36ef1ea91cc6bb68952126e724a2fe1fa117af80 (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
66
67
68
69
70
71
72
73
74
75
heat_template_version: ocata

description: >
  Openstack Manila Cephfs backend

parameters:
  ServiceNetMap:
    default: {}
    description: Mapping of service_name -> network name. Typically set
                 via parameter_defaults in the resource registry.  This
                 mapping overrides those in ServiceNetMapDefaults.
    type: json
  DefaultPasswords:
    default: {}
    type: json
  EndpointMap:
    default: {}
    description: Mapping of service endpoint -> protocol. Typically set
                 via parameter_defaults in the resource registry.
    type: json
  # CephFS Native backend params:
  ManilaCephFSNativeBackendName:
    type: string
    default: cephfsnative
  ManilaCephFSNativeDriverHandlesShareServers:
    type: boolean
    default: false
  ManilaCephFSNativeShareBackendName:
    type: string
    default: 'cephfs'
  ManilaCephFSNativeCephFSConfPath:
    type: string
    default: '/etc/ceph/ceph.conf'
  ManilaCephFSNativeCephFSAuthId:
    type: string
    default: 'manila'
  ManilaCephFSNativeCephFSClusterName:
    type: string
    default: 'ceph'
  ManilaCephFSNativeCephFSEnableSnapshots:
    type: boolean
    default: true
  ManilaCephFSDataPoolName:
    default: manila_data
    type: string
  ManilaCephFSMetadataPoolName:
    default: manila_metadata
    type: string
  # (jprovazn) default value is set to assure this templates works with an
  # external ceph too (user/key is created only when ceph is deployed by
  # TripleO)
  CephManilaClientKey:
    default: ''
    description: The Ceph client key. Can be created with ceph-authtool --gen-print-key.
    type: string
    hidden: true

outputs:
  role_data:
    description: Role data for the Manila Cephfs backend.
    value:
      service_name: manila_backend_cephfs
      config_settings:
        manila::backend::cephfsnative::title: {get_param: ManilaCephFSNativeBackendName}
        manila::backend::cephfsnative::driver_handles_share_servers: {get_param: ManilaCephFSNativeDriverHandlesShareServers}
        manila::backend::cephfsnative::share_backend_name: {get_param: ManilaCephFSNativeShareBackendName}
        manila::backend::cephfsnative::cephfs_conf_path: {get_param: ManilaCephFSNativeCephFSConfPath}
        manila::backend::cephfsnative::cephfs_auth_id: {get_param: ManilaCephFSNativeCephFSAuthId}
        manila::backend::cephfsnative::cephfs_cluster_name: {get_param: ManilaCephFSNativeCephFSClusterName}
        manila::backend::cephfsnative::cephfs_enable_snapshots: {get_param: ManilaCephFSNativeCephFSEnableSnapshots}
        manila::backend::cephfsnative::ceph_client_key: {get_param: CephManilaClientKey}
        ceph::profile::params::fs_data_pool: {get_param: ManilaCephFSDataPoolName}
        ceph::profile::params::fs_metadata_pool: {get_param: ManilaCephFSMetadataPoolName}
        ceph::profile::params::fs_name: {get_param: ManilaCephFSNativeShareBackendName}
      step_config:
highlight .nb { color: #f8f8f2 } /* Name.Builtin */ .highlight .nc { color: #a6e22e } /* Name.Class */ .highlight .no { color: #66d9ef } /* Name.Constant */ .highlight .nd { color: #a6e22e } /* Name.Decorator */ .highlight .ni { color: #f8f8f2 } /* Name.Entity */ .highlight .ne { color: #a6e22e } /* Name.Exception */ .highlight .nf { color: #a6e22e } /* Name.Function */ .highlight .nl { color: #f8f8f2 } /* Name.Label */ .highlight .nn { color: #f8f8f2 } /* Name.Namespace */ .highlight .nx { color: #a6e22e } /* Name.Other */ .highlight .py { color: #f8f8f2 } /* Name.Property */ .highlight .nt { color: #f92672 } /* Name.Tag */ .highlight .nv { color: #f8f8f2 } /* Name.Variable */ .highlight .ow { color: #f92672 } /* Operator.Word */ .highlight .w { color: #f8f8f2 } /* Text.Whitespace */ .highlight .mb { color: #ae81ff } /* Literal.Number.Bin */ .highlight .mf { color: #ae81ff } /* Literal.Number.Float */ .highlight .mh { color: #ae81ff } /* Literal.Number.Hex */ .highlight .mi { color: #ae81ff } /* Literal.Number.Integer */ .highlight .mo { color: #ae81ff } /* Literal.Number.Oct */ .highlight .sa { color: #e6db74 } /* Literal.String.Affix */ .highlight .sb { color: #e6db74 } /* Literal.String.Backtick */ .highlight .sc { color: #e6db74 } /* Literal.String.Char */ .highlight .dl { color: #e6db74 } /* Literal.String.Delimiter */ .highlight .sd { color: #e6db74 } /* Literal.String.Doc */ .highlight .s2 { color: #e6db74 } /* Literal.String.Double */ .highlight .se { color: #ae81ff } /* Literal.String.Escape */ .highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */ .highlight .si { color: #e6db74 } /* Literal.String.Interpol */ .highlight .sx { color: #e6db74 } /* Literal.String.Other */ .highlight .sr { color: #e6db74 } /* Literal.String.Regex */ .highlight .s1 { color: #e6db74 } /* Literal.String.Single */ .highlight .ss { color: #e6db74 } /* Literal.String.Symbol */ .highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #a6e22e } /* Name.Function.Magic */ .highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */ .highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */ .highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */ .highlight .vm { color: #f8f8f2 } /* Name.Variable.Magic */ .highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */ } @media (prefers-color-scheme: light) { .highlight .hll { background-color: #ffffcc } .highlight .c { color: #888888 } /* Comment */ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ .highlight .k { color: #008800; font-weight: bold } /* Keyword */ .highlight .ch { color: #888888 } /* Comment.Hashbang */ .highlight .cm { color: #888888 } /* Comment.Multiline */ .highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */ .highlight .cpf { color: #888888 } /* Comment.PreprocFile */ .highlight .c1 { color: #888888 } /* Comment.Single */ .highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */ .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ .highlight .ge { font-style: italic } /* Generic.Emph */ .highlight .gr { color: #aa0000 } /* Generic.Error */ .highlight .gh { color: #333333 } /* Generic.Heading */ .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ .highlight .go { color: #888888 } /* Generic.Output */ .highlight .gp { color: #555555 } /* Generic.Prompt */ .highlight .gs { font-weight: bold } /* Generic.Strong */ .highlight .gu { color: #666666 } /* Generic.Subheading */ .highlight .gt { color: #aa0000 } /* Generic.Traceback */ .highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */ .highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */ .highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */ .highlight .kp { color: #008800 } /* Keyword.Pseudo */ .highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */ .highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */ .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */ .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */ .highlight .na { color: #336699 } /* Name.Attribute */ .highlight .nb { color: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
uint32_t gm107_grgpc_data[] = {
/* 0x0000: gpc_mmio_list_head */
	0x0000006c,
/* 0x0004: gpc_mmio_list_tail */
/* 0x0004: tpc_mmio_list_head */
	0x0000006c,
/* 0x0008: tpc_mmio_list_tail */
/* 0x0008: unk_mmio_list_head */
	0x0000006c,
/* 0x000c: unk_mmio_list_tail */
	0x0000006c,
/* 0x0010: gpc_id */
	0x00000000,
/* 0x0014: tpc_count */
	0x00000000,
/* 0x0018: tpc_mask */
	0x00000000,
/* 0x001c: unk_count */
	0x00000000,
/* 0x0020: unk_mask */
	0x00000000,
/* 0x0024: cmd_queue */
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
};

uint32_t gm107_grgpc_code[] = {
	0x03410ef5,
/* 0x0004: queue_put */
	0x9800d898,
	0x86f001d9,
	0xf489a408,
	0x020f0b1b,
	0x0002f87e,
/* 0x001a: queue_put_next */
	0x98c400f8,
	0x0384b607,
	0xb6008dbb,
	0x8eb50880,
	0x018fb500,
	0xf00190b6,
	0xd9b50f94,
/* 0x0037: queue_get */
	0xf400f801,
	0xd8980131,
	0x01d99800,
	0x0bf489a4,
	0x0789c421,
	0xbb0394b6,
	0x90b6009d,
	0x009e9808,
	0xb6019f98,
	0x84f00180,
	0x00d8b50f,
/* 0x0063: queue_get_done */
	0xf80132f4,
/* 0x0065: nv_rd32 */
	0xf0ecb200,
	0x00801fc9,
	0x0cf601ca,
/* 0x0073: nv_rd32_wait */
	0x8c04bd00,
	0xcf01ca00,
	0xccc800cc,
	0xf61bf41f,
	0xec7e060a,
	0x008f0000,
	0xffcf01cb,
/* 0x008f: nv_wr32 */
	0x8000f800,
	0xf601cc00,
	0x04bd000f,
	0xc9f0ecb2,
	0x1ec9f01f,
	0x01ca0080,
	0xbd000cf6,
/* 0x00a9: nv_wr32_wait */
	0xca008c04,
	0x00cccf01,
	0xf41fccc8,
	0x00f8f61b,
/* 0x00b8: wait_donez */
	0x99f094bd,
	0x37008000,
	0x0009f602,
	0x008004bd,
	0x0af60206,
/* 0x00cf: wait_donez_ne */
	0x8804bd00,
	0xcf010000,
	0x8aff0088,
	0xf61bf488,
	0x99f094bd,
	0x17008000,
	0x0009f602,
	0x00f804bd,
/* 0x00ec: wait_doneo */
	0x99f094bd,
	0x37008000,
	0x0009f602,
	0x008004bd,
	0x0af60206,
/* 0x0103: wait_doneo_e */
	0x8804bd00,
	0xcf010000,
	0x8aff0088,
	0xf60bf488,
	0x99f094bd,
	0x17008000,
	0x0009f602,
	0x00f804bd,
/* 0x0120: mmctx_size */
/* 0x0122: nv_mmctx_size_loop */
	0xe89894bd,
	0x1a85b600,
	0xb60180b6,
	0x98bb0284,
	0x04e0b600,
	0x1bf4efa4,
	0xf89fb2ec,
/* 0x013d: mmctx_xfer */
	0xf094bd00,
	0x00800199,
	0x09f60237,
	0xbd04bd00,
	0x05bbfd94,
	0x800f0bf4,
	0xf601c400,
	0x04bd000b,
/* 0x015f: mmctx_base_disabled */
	0xfd0099f0,
	0x0bf405ee,
	0xc6008018,
	0x000ef601,
	0x008004bd,
	0x0ff601c7,
	0xf004bd00,
/* 0x017a: mmctx_multi_disabled */
	0xabc80199,
	0x10b4b600,
	0xc80cb9f0,
	0xe4b601ae,
	0x05befd11,
	0x01c50080,
	0xbd000bf6,
/* 0x0195: mmctx_exec_loop */
/* 0x0195: mmctx_wait_free */
	0xc5008e04,
	0x00eecf01,
	0xf41fe4f0,
	0xce98f60b,
	0x05e9fd00,
	0x01c80080,
	0xbd000ef6,
	0x04c0b604,
	0x1bf4cda4,
	0x02abc8df,
/* 0x01bf: mmctx_fini_wait */
	0x8b1c1bf4,
	0xcf01c500,
	0xb4f000bb,
	0x10b4b01f,
	0x0af31bf4,
	0x00b87e05,
	0x250ef400,
/* 0x01d8: mmctx_stop */
	0xb600abc8,
	0xb9f010b4,
	0x12b9f00c,
	0x01c50080,
	0xbd000bf6,
/* 0x01ed: mmctx_stop_wait */
	0xc5008b04,
	0x00bbcf01,
	0xf412bbc8,
/* 0x01fa: mmctx_done */
	0x94bdf61b,
	0x800199f0,
	0xf6021700,
	0x04bd0009,
/* 0x020a: strand_wait */
	0xa0f900f8,
	0xb87e020a,
	0xa0fc0000,
/* 0x0216: strand_pre */
	0x0c0900f8,
	0x024afc80,
	0xbd0009f6,
	0x020a7e04,
/* 0x0227: strand_post */
	0x0900f800,
	0x4afc800d,
	0x0009f602,
	0x0a7e04bd,
	0x00f80002,
/* 0x0238: strand_set */
	0xfc800f0c,
	0x0cf6024f,
	0x0c04bd00,
	0x4afc800b,
	0x000cf602,
	0xfc8004bd,
	0x0ef6024f,
	0x0c04bd00,
	0x4afc800a,
	0x000cf602,
	0x0a7e04bd,
	0x00f80002,
/* 0x0268: strand_ctx_init */
	0x99f094bd,
	0x37008003,
	0x0009f602,
	0x167e04bd,
	0x030e0002,
	0x0002387e,
	0xfc80c4bd,
	0x0cf60247,
	0x0c04bd00,
	0x4afc8001,
	0x000cf602,
	0x0a7e04bd,
	0x0c920002,
	0x46fc8001,
	0x000cf602,
	0x020c04bd,
	0x024afc80,
	0xbd000cf6,
	0x020a7e04,
	0x02277e00,
	0x42008800,
	0x20008902,
	0x0099cf02,
/* 0x02c7: ctx_init_strand_loop */
	0xf608fe95,
	0x8ef6008e,
	0x808acf40,
	0xb606a5b6,
	0xeabb01a0,
	0x0480b600,
	0xf40192b6,
	0xe4b6e81b,
	0xf2efbc08,
	0x99f094bd,
	0x17008003,
	0x0009f602,
	0x00f804bd,
/* 0x02f8: error */
	0xffb2e0f9,
	0x4098148e,
	0x00008f7e,
	0xffb2010f,
	0x409c1c8e,
	0x00008f7e,
	0x00f8e0fc,
/* 0x0314: tpc_strand_wait */
	0x94bd90f9,
	0x800a99f0,
	0xf6023700,
	0x04bd0009,
/* 0x0324: tpc_strand_busy */
	0x033f0089,
	0xb30099cf,
	0xbdf90094,
	0x0a99f094,
	0x02170080,
	0xbd0009f6,
	0xf890fc04,
/* 0x0341: init */
	0x4104bd00,
	0x11cf4200,
	0x0911e700,
	0x0814b601,
	0x020014fe,
	0x12004002,
	0xbd0002f6,
	0x05b04104,
	0x400010fe,
	0x00f60700,
	0x0204bd00,
	0x04004004,
	0xbd0002f6,
	0x1031f404,
	0x01820082,
	0x030022cf,
	0x1f24f001,
	0xb60432bb,
	0x02b50132,
	0x0603b505,
	0x01860082,
	0xb50022cf,
	0x24b60402,
	0xc900800f,
	0x0002f601,
	0x308e04bd,
	0x24bd500c,
	0x44bd34bd,
/* 0x03b0: init_unk_loop */
	0x0000657e,
	0xf400f6b0,
	0x010f0e0b,
	0xfd04f2bb,
	0x30b6054f,
/* 0x03c5: init_unk_next */
	0x0120b601,
	0xb004e0b6,
	0x1bf40226,
/* 0x03d1: init_unk_done */
	0x0703b5e2,
	0x820804b5,
	0xcf020100,
	0x34bd0022,
	0x80082595,
	0xf601c000,
	0x04bd0005,
	0x01c10080,
	0xbd0005f6,
	0x000e9804,
	0x7e010f98,
	0xbb000120,
	0x3fbb002f,
	0x010e9800,
	0x7e020f98,
	0x98000120,
	0xeffd050e,
	0x002ebb00,
	0x98003ebb,
	0x0f98020e,
	0x01207e03,
	0x070e9800,
	0xbb00effd,
	0x3ebb002e,
	0x0235b600,
	0x01d30080,
	0xbd0003f6,
	0x0825b604,
	0xb60635b6,
	0x30b60120,
	0x0824b601,
	0xb20834b6,
	0x02687e2f,
	0x002fbb00,
	0x0f003fbb,
	0x8effb23f,
	0xf0501d60,
	0x8f7e01e5,
	0x0c0f0000,
	0xa88effb2,
	0xe5f0501d,
	0x008f7e01,
	0x03147e00,
	0xb23f0f00,
	0x1d608eff,
	0x01e5f050,
	0x00008f7e,
	0xffb2000f,
	0x501d9c8e,
	0x7e01e5f0,
	0x0f00008f,
	0x03147e01,
	0x8effb200,
	0xf0501da8,
	0x8f7e01e5,
	0xff0f0000,
	0x988effb2,
	0xe5f0501d,
	0x008f7e01,
	0xb2020f00,
	0x1da88eff,
	0x01e5f050,
	0x00008f7e,
	0x0003147e,
	0x85050498,
	0x98504000,
	0x64b60406,
	0x0056bb0f,
/* 0x04e0: tpc_strand_init_tpc_loop */
	0x05705eb8,
	0x00657e00,
	0xbdf6b200,
/* 0x04ed: tpc_strand_init_idx_loop */
	0x605eb874,
	0x7fb20005,
	0x00008f7e,
	0x05885eb8,
	0x082f9500,
	0x00008f7e,
	0x058c5eb8,
	0x082f9500,
	0x00008f7e,
	0x05905eb8,
	0x00657e00,
	0x06f5b600,
	0xb601f0b6,
	0x2fbb08f4,
	0x003fbb00,
	0xb60170b6,
	0x1bf40162,
	0x0050b7bf,
	0x0142b608,
	0x0fa81bf4,
	0x8effb23f,
	0xf0501d60,
	0x8f7e01e5,
	0x0d0f0000,
	0xa88effb2,
	0xe5f0501d,
	0x008f7e01,
	0x03147e00,
	0x01008000,
	0x0003f602,
	0x24bd04bd,
	0x801f29f0,
	0xf6023000,
	0x04bd0002,
/* 0x0574: main */
	0xf40031f4,
	0x240d0028,
	0x0000377e,
	0xb0f401f4,
	0x18f404e4,
	0x0181fe1d,
	0x20bd0602,
	0xb60412fd,
	0x1efd01e4,
	0x0018fe05,
	0x0006477e,
/* 0x05a3: main_not_ctx_xfer */
	0x94d40ef4,
	0xf5f010ef,
	0x02f87e01,
	0xc70ef400,
/* 0x05b0: ih */
	0x88fe80f9,
	0xf980f901,
	0xf9a0f990,
	0xf9d0f9b0,
	0xbdf0f9e0,
	0x02004a04,
	0xc400aacf,
	0x0bf404ab,
	0x4e240d1f,
	0xeecf1a00,
	0x19004f00,
	0x7e00ffcf,
	0x0e000004,
	0x1d004001,
	0xbd000ef6,
/* 0x05ed: ih_no_fifo */
	0x01004004,
	0xbd000af6,
	0xfcf0fc04,
	0xfcd0fce0,
	0xfca0fcb0,
	0xfe80fc90,
	0x80fc0088,
	0xf80032f4,
/* 0x060d: hub_barrier_done */
	0x98010f01,
	0xfebb040e,
	0x8effb204,
	0x7e409418,
	0xf800008f,
/* 0x0621: ctx_redswitch */
	0x80200f00,
	0xf6018500,
	0x04bd000f,
/* 0x062e: ctx_redswitch_delay */
	0xe2b6080e,
	0xfd1bf401,
	0x0800f5f1,
	0x0200f5f1,
	0x01850080,
	0xbd000ff6,
/* 0x0647: ctx_xfer */
	0x8000f804,
	0xf6028100,
	0x04bd000f,
	0xc48effb2,
	0xe5f0501d,
	0x008f7e01,
	0x0711f400,
	0x0006217e,
/* 0x0664: ctx_xfer_not_load */
	0x0002167e,
	0xfc8024bd,
	0x02f60247,
	0xf004bd00,
	0x20b6012c,
	0x4afc8003,
	0x0002f602,
	0x0c0f04bd,
	0xa88effb2,
	0xe5f0501d,
	0x008f7e01,
	0x03147e00,
	0xb23f0f00,
	0x1d608eff,
	0x01e5f050,
	0x00008f7e,
	0xffb2000f,
	0x501d9c8e,
	0x7e01e5f0,
	0x0f00008f,
	0x03147e01,
	0x01fcf000,
	0xb203f0b6,
	0x1da88eff,
	0x01e5f050,
	0x00008f7e,
	0xf001acf0,
	0x008b02a5,
	0x0c985000,
	0x0fc4b604,
	0x9800bcbb,
	0x0d98000c,
	0x7e000e01,
	0xf000013d,
	0x008b01ac,
	0x0c985040,
	0x0fc4b604,
	0x9800bcbb,
	0x0d98010c,
	0x060f9802,
	0x7e08004e,
	0xf000013d,
	0xa5f001ac,
	0x30008b04,
	0x040c9850,
	0xbb0fc4b6,
	0x0c9800bc,
	0x030d9802,
	0x4e080f98,
	0x3d7e0200,
	0x0a7e0001,
	0x147e0002,
	0x01f40003,
	0x1a12f406,
/* 0x073c: ctx_xfer_post */
	0x0002277e,
	0xffb20d0f,
	0x501da88e,
	0x7e01e5f0,
	0x7e00008f,
/* 0x0753: ctx_xfer_done */
	0x7e000314,
	0xf800060d,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
	0x00000000,
};